Exercise 5.3


Note: Anonymous functions are not introduced until chapter 9! But they are an easy way to solve problems like this.

mylength :: [a] -> Int
mylength xs = foldl (\x _ -> x + 1) 0 xs

One response to “Exercise 5.3”

  1. same one without anonymous function
    length1 x = foldl count 0 x where count x y = x + 1

Leave a Reply

Your email address will not be published. Required fields are marked *