I'm just starting to take a look at Haskell (my previous FP experience is in Scheme), and I came across this code:
do { putStrLn "ABCDE" ; putStrLn "12345" }
To me, this is procedural programming, if anything -- especially because of the consecutive nature of side effects.
Would someone please explain how this code is "functional" in any respect?

IO Monadand is thus theoretically pure, though it's sometimes referred to as impure. – is7s Jun 19 '11 at 0:20dosyntax, then you would need to write what Don Stewart answered by hand. And, as you can see, that is functional, and, therefore, pure.dois simply a convenience to make such tasks easier for when you really need functionality that can only be expressed procedurally. – rid Jun 19 '11 at 2:14donotation is just syntactic sugar that lets you write code in imperative style, that gets translated to lambdas. What you put inside thedoblock is "procedural and imperative code" in exactly the same way that rolling your own vtable and inheritance system and whatnot in C lets you write "object-oriented code". – C. A. McCann Jun 19 '11 at 2:50[putStrLn "ABCDE", putStrLn "12345"]in Haskell. This will not do any IO. It's a list of two IO computations, but they have to "get in contact" with main to actually execute. So IO values really do behave like any other values in Haskell, except thatmainis special. – augustss Jun 19 '11 at 14:04