Sha256: ac9d5049a645607403800b98efd7f3cfbca9a61c04d368676bfe6014ba156d80
Contents?: true
Size: 657 Bytes
Versions: 66
Compression:
Stored size: 657 Bytes
Contents
module GradeSchool exposing (addStudent, allStudents, empty, studentsInGrade) type alias Grade = Int type alias Student = String type alias School = Dict Int (List Student) empty : School empty = Debug.crash "Please implement this function" addStudent : Grade -> Student -> School -> School addStudent grade student school = Debug.crash "Please implement this function" studentsInGrade : Grade -> School -> List Student studentsInGrade grade school = Debug.crash "Please implement this function" allStudents : School -> List ( Grade, List Student ) allStudents school = Debug.crash "Please implement this function"
Version data entries
66 entries across 66 versions & 1 rubygems