aboutsummaryrefslogtreecommitdiff
path: root/samples/state_writer.js
blob: 081e9f1d4fd6272477635563dda1933cfca12779 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import * as state from '../src/state.js'

const log = (a, str) => st => state.State(a)(st + str)

const deepthought = state.DO(function* () {
    const answer = yield log(42, "Finding answer... ")
    const correct = yield log(answer == 42, "Checking answer... ")
    if (correct) yield log(null, "Is correct!") 
    else yield log(null, "Is false!")
    return answer
})

console.log(deepthought("")(log => answer => ({answer, log})))