Skip to content

Commit 78850fc

Browse files
committed
Add foldl' to Prelude hiding in
1 parent 2ac748b commit 78850fc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

exercises/practice/list-ops/src/ListOps.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module ListOps
1010
) where
1111

1212
import Prelude hiding
13-
( length, reverse, map, filter, foldr, (++), concat )
13+
( length, reverse, map, filter, foldl', foldr, (++), concat )
1414

1515
foldl' :: (b -> a -> b) -> b -> [a] -> b
1616
foldl' f z xs = error "You need to implement this function."

0 commit comments

Comments
 (0)