Created
August 26, 2011 13:49
-
-
Save manuel/1173439 to your computer and use it in GitHub Desktop.
Delimited control example
This file contains 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
(run-cc | |
($lambda () | |
($let ((p (make-prompt))) | |
(+ 2 ($push-prompt p | |
($if (with-sub-cont p | |
($lambda (k) | |
(+ ($push-sub-cont k #f) | |
($push-sub-cont k #t)))) | |
3 | |
4)))))) | |
;; ==> 9 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment