[Haskell-beginners] State monad
Britt Anderson
britt.uwaterloo at gmail.com
Mon Feb 14 19:11:19 CET 2011
Many of the tutorials on the state monad seem to suggest that you can use
State as a data constructor, but I can't get this to work. E.g. in ghci
after :m Control.Monad.State I can
let f = (\x -> (x,x))
let y = state f
but if I,
let z = State f
I get an error message: Not in scope: data constructor `State'.
Can someone please explain?
Thanks, Britt
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.haskell.org/pipermail/beginners/attachments/20110214/96ec32dd/attachment.htm>
More information about the Beginners
mailing list