Tagged Questions

24
votes
9answers
1k views

I just don't get continuations!

What are they and what are they good for? I do not have a CS degree and my background is VB6 -> ASP -> ASP.NET/C#. Can anyone explain it in a clear and concise manner?
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 ...
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)
0
votes
1answer
178 views

How does this callcc example work?

(callcc (fun k -> k 7)) + 3 (callcc (fun k -> 7)) + 3 What do each of these evaluate to and why?