>>73
I get that part. I was able to come up with it myself. I get the technical part and how do the monads work, but I have no idea what actually is a monad and why would I want to use them.
Name:
Anonymous2008-06-21 19:44
>>76
A Monad is an instance of the Monad class. You want to use them because you can use all instances of Monad ("monads") in the same general way (think do { ...; ... <- ...; ...}, mplus). That is all.