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