Can call-with-current-continuation be implemented only with lambdas and closures?

Viewed 3183

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. Therefore I think call/cc can't be implemented via lambdas and closures.

Any more ideas?

2 Answers
Related