Documentation:Procedure call-with-current-continuation
From Gambit wiki
Revision as of 04:05, 11 October 2009 by Jonathan Arkell (Talk | contribs)
User contributed comments, clarifications and examples
These procedures return a procedure that invokes the continuation, and not the continuations themselves.
> (procedure? (call/cc (lambda (k) k))) #t > (continuation? (call/cc (lambda (k) k))) #f > (procedure? (continuation-capture (lambda (k) k))) #f > (continuation? (continuation-capture (lambda (k) k))) #t