Prelude> let f = \x->\y->\z->x (map (+ y) z)
<interactive>:1: parse error on input `->\'
Prelude> let f = \x-> \y-> \z-> x (map (+ y) z)
Prelude>

Are the spaces really necessary, or is this a bug?

Thanks,

Bryn

_______________________________________________
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users

Reply via email to