Lest it all be explanation by example, the story basically goes like this:
Binary functions can be used in infix style by surrounding the function name by backticks (plus x y <=> x `plus` y) Binary operators can be used in prefix style by enclosing it in parentheses ( 4 + 3 <=> (+) 4 3 ) And just like you can declare new "normal" functions, you can declare new infix operators by using non-alpha names. -kzm -- If I haven't seen further, it is by standing in the footprints of giants _______________________________________________ Haskell mailing list [EMAIL PROTECTED] http://www.haskell.org/mailman/listinfo/haskell
