
17 Jan
2010
17 Jan
'10
5:33 a.m.
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?