>>>>> Chul-Woong Yang <cwyang at aranetworks.com> writes: > Does (f . g) x y z equal ((((f . g) x) y) z) in haskell? Correct, since function application is left-associative and binds more tightly than any other operator. John