Sha256: e4476e55b51cc184cd1e31becb4d2b798b5085f2e30b50f64334e72c518a6782
Contents?: true
Size: 469 Bytes
Versions: 329
Compression:
Stored size: 469 Bytes
Contents
module School (School, add, empty, grade, sorted) where data School = Dummy add :: Int -> String -> School -> School add gradeNum student school = error "You need to implement this function." empty :: School empty = error "You need to implement this function." grade :: Int -> School -> [String] grade gradeNum school = error "You need to implement this function." sorted :: School -> [(Int, [String])] sorted school = error "You need to implement this function."
Version data entries
329 entries across 329 versions & 1 rubygems