Skip to content

Commit 1c0c293

Browse files
committed
more text
1 parent 4ace5a6 commit 1c0c293

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

_chapters/randmonad.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ diceRolls1 n s =
5656
in (r:rolls, s'')
5757
```
5858

59-
But keeping track of the various seeds (`s`,`s'`,`s''`) is tedious and error prone. Let's invent a monad which manages the seed for us.
59+
But keeping track of the various seeds (`s`,`s'`,`s''`) is tedious and error prone. Let's invent a monad which manages the seed for us. The seed will be threaded through all of our functions implicitly in the monadic return type.
6060

6161
```haskell
6262
newtype Rand a = Rand { next :: Seed -> (Seed, a) }
@@ -218,6 +218,8 @@ incrementSeed = do
218218
219219
## Rolling A Dice
220220
221+
Let's revisit the dice rolling example, but use the `Rand` monad to thread the seed through all of our functions without us having to pass it around as a separate parameter. First recall our `nextRand` and `genRand` functions:
222+
221223
```haskell
222224
nextRand :: Seed -> Seed
223225
nextRand prevSeed = (a*prevSeed + c) `mod` m

0 commit comments

Comments
 (0)