Tony Morris wrote:
No, but there's a specific reason why GHC consistently refuses to accept
your perfectly unreasonable code snippet :)

She sells csh on the sea shore. :-)

GHC accepts the following perfectly reasonable code snippet:

main = do
 putStrLn "Line 1"
 putStrLn "Line 2"

 let xs = do x <- [1..10]
             y <- [1..10]
             return (x+y)

 print xs

Urg, but that's *ugly*. Is there no way I can reduce the amount of indentation to something more reasonable?

_______________________________________________
Haskell-Cafe mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to