Top "Continuations" questions

In computer science and programming, a continuation is an abstract representation of the control state.

How to implement continuations?

I'm working on a Scheme interpreter written in C. Currently it uses the C runtime stack as its own stack, …

c lisp scheme continuations