3
votes
3answers
181 views
How can I initialize state in a hidden way in Haskell (like the PRNG does)?
Hi,
I went through some tutorials on the State monad and I think I got the idea.
For example, as in this nice tutorial:
import Data.Word
type LCGState = Word32
lcg :: LCGState …
8
votes
7answers
1k views
Use of Haskell state monad a code smell?
God I hate the term "code smell", but I can't think of anything more accurate.
I'm designing a high-level language & compiler to Whitespace in my spare time to learn about com …
6
votes
4answers
219 views
How does ‘get’ actually /get/ the initial state in Haskell?
I have a function:
test :: String -> State String String
test x =
get >>= \test ->
let test' = x ++ test in
put test' >>
get >>= \test2 -& …
