On 4/4/08, Fritz Ruehr <[EMAIL PROTECTED]> wrote: > In fact, even this goes through without a hitch! > > 2 = 3
This is hilarious. Maybe bindings that don't actually bind anything should be an error? Or at least a warning? In ghci: Prelude> let 2 = 3 -- no problem Prelude> let (2,x) = (3,4) -- no problem Prelude> x *** Exception: <interactive>:1:4-16: Irrefutable pattern match failed for pattern (2,x) -- ryan _______________________________________________ Haskell-Cafe mailing list [email protected] http://www.haskell.org/mailman/listinfo/haskell-cafe
