
16 Oct
2002
16 Oct
'02
6:21 p.m.
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