mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 13:49:16 +02:00
13 lines
400 B
Markdown
13 lines
400 B
Markdown
# Load Library
|
|
|
|
The `(scheme load)` library exports procedures for loading Scheme expressions from files.
|
|
|
|
- [`load`](#load)
|
|
|
|
#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.
|