I am new to Haskell, using Ghci.
I have a function, called three, that I want to write as
let three = \x->(\y->(x(x(x y))))
OK, this works, but when I try
three (2+) 4
It does not work. Instead, I get some "cannot construct infinite type" error.
Please help me.
three = foldr (.) id . replicate 3, if you want to be pointless, err, point-free. – ephemient Oct 28 '09 at 21:52