Skip to content

Instantly share code, notes, and snippets.

@manuel
Created August 1, 2012 15:21
Show Gist options
  • Save manuel/3227775 to your computer and use it in GitHub Desktop.
Save manuel/3227775 to your computer and use it in GitHub Desktop.
Call/CC in terms of Feeley's "Better API for First-Class Continuations"
(define (call/cc f)
(continuation-capture
(lambda (k)
(f (lambda (val)
(continuation-graft k (lambda () val)))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment