Just a little nitpick:
λ map (+1) [1..5] can't find file: Imports.hs λ map (+ 1) [1..5] [2,3,4,5,6]:: (Enum b, Num b) => [b]
Edit: looks like some random bug.
λ let (_,(a:_)) = (10,"abc") in a can't find file: Imports.hs λ let (_,(a:_)) = (10,"abc") in a 'a' :: Char
λ foldr (:) [] [1,2,3]
:: Num a => [a]
[1,2,3] :: Num a => [a]
Just a little nitpick:
though the first expression is what suggested in lesson 4.Edit: looks like some random bug.