Created
April 26, 2015 14:24
-
-
Save SteveGilham/ecb52af9bc57f9c77d2e to your computer and use it in GitHub Desktop.
Continuation essentials
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) | |
let execute (K f) = f() | |
let stop = K (fun () -> ());; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment