
Next: Error Display Handler
Up: Additional Facilities
Previous: Print Handler
A prompt read handler is invoked by read-eval-print-loop
to print the prompt and read input Scheme expressions. A prompt read handler
takes no arguments and returns an S expression.
- (current-prompt-read) returns the current prompt read handler.
- (current-prompt-read f) sets the handler to f.
The default prompt read handler prints ``> '' and returns the result
of (read).
PLT