Hi, Haskell language reference says the special - operator translates to negate. However, this: (+ negate 5) 5 works but this: (+ -5) 5 is not valid. Why? Thanks, Maurício