Sha256: e3621982f3a9d065be8298321977f4d2510b7a06324ca05adc1caa09ca380acd
Contents?: true
Size: 457 Bytes
Versions: 277
Compression:
Stored size: 457 Bytes
Contents
module Clock (clockHour, clockMin, fromHourMin, toString) where data Clock = Dummy clockHour :: Clock -> Int clockHour clock = error "You need to implement this function." clockMin :: Clock -> Int clockMin clock = error "You need to implement this function." fromHourMin :: Int -> Int -> Clock fromHourMin hour min = error "You need to implement this function." toString :: Clock -> String toString clock = error "You need to implement this function."
Version data entries
277 entries across 277 versions & 1 rubygems