The following code, which is verbatim from LYAH , does not compile. The code and compile-time error are given below. On the LYAH page, the code is ~ 15% down the page, yay emacs browser :)
Any ideas why? Can I ignore something completely obvious?
(Despite the similarities in the post headers, I think my question is different from this .)
Here's the code (in the file I called testcopy.hs )
import Control.Monad.Writer logNumber :: Int -> Writer [String] Int logNumber x = Writer (x, ["Got number: " ++ show x]) multWithLog :: Writer [String] Int multWithLog = do a <- logNumber 3 b <- logNumber 5 return (a*b)
And here is the compile time error:
Prelude> :l testcopy.hs [1 of 1] Compiling Main ( testcopy.hs, interpreted ) testcopy.hs:4:15: Not in scope: data constructor `Writer' Perhaps you meant `WriterT' (imported from Control.Monad.Writer) Failed, modules loaded: none.
haskell monads
iceman
source share