Created
June 8, 2018 17:53
-
-
Save awto/07b88f8f31a863399ddc5bd2fb034e85 to your computer and use it in GitHub Desktop.
State Monad Inlined
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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