AtlatestRepositorysigil-r7rs

sigil-r7rs / tree / src / schemeload.sgl

1;;; (scheme load) - R7RS Load Library
2;;;
3;;; Load and evaluate Scheme source files at runtime.
4;;;
5;;; See: [R7RS Small](https://small.r7rs.org/) §6.12
6
7(define-library (scheme load)
8 (export load))
9
10;;; load is provided as a native builtin.