cyclone/docs/api/scheme/load.md
Justin Ethier 1df3dacb61 Sync
2016-10-04 00:26:49 -04:00

20 lines
520 B
Markdown

---
layout: main
title: API
---
# Load Library
The `(scheme load)` library exports procedures for loading Scheme expressions from files.
For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.pdf).
- [`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.