G'day.

One small suggestion.

Quoting Thomas Conway <[EMAIL PROTECTED]>:

>                 Just (v,e) -> do
>                     case e of
>                         True -> [...]
>                         False -> [...]

This works just as well:

                  Just (v,True) -> [...]
                  Just (v,False) -> [...]

And given that you wrote the corresponding code in another compiler that
we won't mention, I feel justified in saying: Shame on you for not
spotting that one. :-)

Cheers,
Andrew Bromage
_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to