
1 Aug
2007
1 Aug
'07
9:27 a.m.
On 8/1/07, david48
As a beginner haskeller coming from an imperative experience, I think I understood what he meant.
say you have this code :
putStrLn "1" >> putStrLn "2" >> putStrLn "3"
you can imagine each of the calls to putStrLn gets implicitly passed a variable (here, the world ) and they happen in succession so it's "like a loop".
Why isn't this "like a semicolon"? Chris