
Next: Prompt Read Handler
Up: Additional Facilities
Previous: Load Handler
A print handler is invoked by read-eval-print-loop
to print Scheme expressions. A print handler takes one argument,
a value to be printed. The handler's return value is ignored.
- (current-print) returns the current print handler.
- (current-print f) sets the handler to f.
The default print handler displays the value to the current output
port and prints a newline.
PLT