tracks/haskell/exercises/accumulate/src/Accumulate.hs in trackler-2.0.6.40 vs tracks/haskell/exercises/accumulate/src/Accumulate.hs in trackler-2.0.6.41

- old
+ new

@@ -1,4 +1,4 @@ module Accumulate (accumulate) where accumulate :: (a -> b) -> [a] -> [b] -accumulate = error "You need to implement this function." +accumulate f xs = error "You need to implement this function."