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?