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 ...
11
votes
2answers
635 views
How the yin-yang puzzle works?
I'm trying to grasp the semantics of call/cc in Scheme, and the Wikipedia page on continuations shows the yin-yang puzzle as an example:
(let* ((yin
((lambda (cc) (display #\@) cc) ...
10
votes
5answers
216 views
call/cc implementation?
I'm trying to find how call/cc is implemented. The best I've found is this Haskell snippet:
callCC f = Cont $ \k -> runCont (f (\a -> Cont $ \_ -> k a)) k
Although this is not as simple as ...
5
votes
4answers
778 views
Specifics of call/cc
This is related to http://stackoverflow.com/questions/612761/what-is-call-cc, but I didn't want to hijack this question for my own purposes, and some of its arguments like the analogy to ...
3
votes
1answer
138 views
Can “if” be implemented using “call/cc”?
I've been told that "call/cc" can be used to implement arbitrary control flow constructs so I'm trying to implement all such constructs using "call/cc" but I'm having trouble. Assuming I didn't have ...
3
votes
3answers
154 views
I can't seem to wrap my mind around call/cc in Scheme
Does anyone have a good guide as to how it works? Something with visual aids would be nice, every guide I've come across all seem to say the same thing I need a fresh take on it.
3
votes
2answers
437 views
Can call-with-current-continuation be implemented only with lambdas and closures?
Does anyone know if call/cc can be implemented with just lambdas and closures?
It seems that call/cc interrupts the program's flow (like an exception) but lambdas and closures can't do that. ...
3
votes
2answers
462 views
Continuation (call/cc) in Scheme
I need to understand Continuations in Scheme for my upcoming exams and I have no idea about continuations at all. Can anyone please suggest me sources of how to go about learning continuations?
...
1
vote
0answers
168 views
Scheme continuation restarting in weird place
UPDATE:
So the issue seems to be with the generator, and not necessarily with the next-token and lookahead functions. I added some display calls around where the set!s were happening, and found that ...
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 ...
0
votes
1answer
175 views
Coroutines in Scheme (R5RS)
So I first came across the concept of coroutines in lua and lua's implementation was more or less understandable.. I'm learning scheme now and I understand that the same functionality is implemented ...
0
votes
1answer
72 views
Is there macros for rewrite CPS?
For example I have two async methods
(get-a 10 (lambda (a) (get-b a (lambda (b) (display b)))
but I want to write something similar to
(define (a (get-a 10)))
(define (b (get-b a)))
(display b)