Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 487 Bytes

load.md

File metadata and controls

15 lines (8 loc) · 487 Bytes

Load Library

The (scheme load) library exports procedures for loading Scheme expressions from files.

For more information see the R7RS Scheme Specification.

load

(load filename)

The load procedure reads expressions and definitions from the file and evaluates them sequentially.

Note that when using load in a compiled program, the file will be processed at runtime using eval. The file contents will not be compiled.