previous up next     contents index
Next: Print Handler Up: Additional Facilities Previous: Evaluation Handler

Load 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>.

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