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