tracks/haskell/exercises/grains/src/Grains.hs in trackler-2.0.6.11 vs tracks/haskell/exercises/grains/src/Grains.hs in trackler-2.0.6.12

- old
+ new

@@ -1,7 +1,7 @@ module Grains (square, total) where square :: Integer -> Maybe Integer -square n = undefined +square n = error "You need to implement this function." total :: Integer -total = undefined +total = error "You need to implement this function."