Skip to content

Instantly share code, notes, and snippets.

@awto
Created June 8, 2018 17:53
Show Gist options
  • Select an option

  • Save awto/07b88f8f31a863399ddc5bd2fb034e85 to your computer and use it in GitHub Desktop.

Select an option

Save awto/07b88f8f31a863399ddc5bd2fb034e85 to your computer and use it in GitHub Desktop.
State Monad Inlined
function incr(s) {
const ns = s + 1
return [ns, ns]
}
function incrX2(s) {
const [s1, r1] = incr(s)
const [s2, r2] = incr(s1)
return [s2, r1 + r2]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment