-
-
Save monkey-codes/c900782be9ada7264e10b8ed53968450 to your computer and use it in GitHub Desktop.
Screen IO monad
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
| object Screen { | |
| ... | |
| fun io(programState: ProgramState): IO<ProgramState> = | |
| Suspend { generate(programState) } | |
| .flatMap { IOs.stdout(it).map { programState.toMostRecentValidState() }} | |
| ... | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment