Tagged Questions
17
votes
9answers
2k views
What is call/cc?
I've tried several times to grasp the concept of continuations and call/cc. Every single attempt was a failure. Can somebody please explain me these concepts, ideally with more realistic examples than ...
1
vote
1answer
220 views
How to make just part of a macro hygienic
I'd like to have a version of lambda, called lambda-r, from within which you can return. An example:
(+ ((lambda-r ()
(return 1)
2)) 5)
This would give the value 6. Although you might ...