previous up next     contents index
Next: Load Handler Up: Additional Facilities Previous: Keywords

Evaluation Handler

 

        An evaluation handler is invoked by  eval,  read-eval-print-loop, and  load to evaluate Scheme expressions. An evaluation handler takes one argument, an S-expression to be evaluated, and returns the value of the expression (possibly multiple values; see section 2.26).

The default evaluation handler expands, compiles, and executes the input expression in the top-level environment.



PLT