
Next: Print Handler
Up: Additional Facilities
Previous: Evaluation Handler
An load handler is invoked by load,
and load-with-cd to load Scheme
files. A load handler takes one argument, a filename
to be loaded, and returns #<void>.
- (current-load) returns the current load handler.
- (current-load f) sets the handler to f.
The default load handler calls read and eval for each
expression in the source file, treating a hash mark on the first line
as a comment (see also section 3.1).
PLT