There is source to a SICP metacircular evaluator can be found at https://mitpress.mit.edu/sites/default/files/sicp/code/ch4-mceval.scm
Does anyone know of mceval that includes an implementation of call-with-current-continuation?
There is source to a SICP metacircular evaluator can be found at https://mitpress.mit.edu/sites/default/files/sicp/code/ch4-mceval.scm
Does anyone know of mceval that includes an implementation of call-with-current-continuation?
Copyright © 2021 Jogjafile Inc.
Because it is a metacircular-evaluator, you can implement
call/cc
in terms ofcall/cc
.Just add the following code to ch4-mceval.scm.
An example of using the
call/cc
.For simplicity's sake, I created a new special form
throw
to call the continuation. Here is(throw k 5)
. However, you can make it support callk
directly. It should not be too hard.