On Monday, February 04, 2013 16:26:37 Timon Gehr wrote: > > ... > > And there are no parens on functions in haskell of any kind to begin > > with. The syntax isn't C-like at all. > > ... > > s x y z = ((x z) (y z)) -- note the parens Which aren't doing function calls. They're only applying precedence. - Jonathan M Davis