Context.java | Class | Context is a utility class which facilitates Java to Scheme
calls in SISC.
Typically, this involves obtaining an Interpreter for a given
initialized
sisc.interpreter.AppContext , using the Interpreter for one or more
evaluations, then exiting the context, as follows:
AppContext ctx = ...
Interpreter r=Context.enter(ctx);
r.eval(someProcedure, new Value[] { ... |