Created
April 26, 2015 14:14
-
-
Save SteveGilham/a649ae8e1c3f054314a6 to your computer and use it in GitHub Desktop.
Continuation based computation
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
| type continuation = K of (unit -> unit) | |
| step1: continuation -> continuation | |
| end: continuation | |
| program = step1 end : continuation |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment