Skip to content

Instantly share code, notes, and snippets.

@manuel
Created August 26, 2011 13:49
Show Gist options
  • Save manuel/1173439 to your computer and use it in GitHub Desktop.
Save manuel/1173439 to your computer and use it in GitHub Desktop.
Delimited control example
(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