Sha256: be5417732a53af706d0ed5edd34c01894bedc06e1d1693d1433a2df8c525b029
Contents?: true
Size: 279 Bytes
Versions: 277
Compression:
Stored size: 279 Bytes
Contents
module Bowling (score, BowlingError(..)) where data BowlingError = IncompleteGame | InvalidRoll { rollIndex :: Int, rollValue :: Int } deriving (Eq, Show) score :: [Int] -> Either BowlingError Int score rolls = error "You need to implement this function."
Version data entries
277 entries across 277 versions & 1 rubygems