Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How does the monad construct help to maintain purity (in Haskell) while at the same time doing impure things? When for example you give print "Hello" are you executing pure or impure code? It is a very subtle detail but something that helps better understand the idea of purity and impurity in functional languages.

share|improve this question
1  
You can take a look at my answer on this topic May be it can help you. – zurgl Jan 10 at 14:50

2 Answers

The expression

print "Hello"

is indeed pure. As it doesn't print anything, but rather constructs something that, when executed, prints "Hello".

Here is an analogy:

A monk writes on a sheet of paper:

Go to a bordell and do filthy things with the prostitutes there.

Can we accuse the monk because of adultery, just because he wrote an instruction to engage in adultery?

share|improve this answer
2  
Real World Haskell indeed. +1 – Chris Barrett Jan 10 at 11:24
Yes we can accuse him. – Dragno Jan 12 at 14:36

The question in stackoverflow may answer your question: In what sense is the IO Monad pure?

In short, monad itself is pure, but it can issue impure instructions. To be a little bit more specific, monads can be viewed as a series of composable computation descriptions. Some of these computations may be dirty(i.e. have side-effect), but description itself is totally pure and clean.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.