
14 Aug
2007
14 Aug
'07
12:59 p.m.
On 8/14/07, Sebastian Sylvan
I like the very light weight analogy (which works for most practical uses of monads) that a monadic action is a "recipe"
Many introductory programming books present the idea of a program as a recipe. Here's a recipe for computing factorials: fact 0 = 1 fact n = n*fact (n-1) Where do monads come in? -- Dan