diff options
| author | Rose Hogenson <rhogenson@posteo.net> | 2022-08-05 21:04:49 -0700 |
|---|---|---|
| committer | Rose Hogenson <rhogenson@posteo.net> | 2022-08-05 21:04:49 -0700 |
| commit | 83a18a658ac925b589d36e37ae150ec986d5eba8 (patch) | |
| tree | ecea56f73087903aae129bf5b88f8bf2acac6a49 /lib/scheme/base.csc | |
| parent | Add call-with-values. (diff) | |
| download | chromatopelma-83a18a658ac925b589d36e37ae150ec986d5eba8.tar.zst | |
Add more of the standard library.
Diffstat (limited to 'lib/scheme/base.csc')
| -rw-r--r-- | lib/scheme/base.csc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/scheme/base.csc b/lib/scheme/base.csc index 1bba9f4..1cb2aa0 100644 --- a/lib/scheme/base.csc +++ b/lib/scheme/base.csc @@ -1,4 +1,7 @@ (define-library (scheme base) (include-library-declarations "base/10-define.csc") (include-library-declarations "base/20-let.csc") - (include-library-declarations "base/30-if.csc")) + (include-library-declarations "base/30-if.csc") + (include-library-declarations "base/40-values.csc") + (include-library-declarations "base/50-records.csc") + (include-library-declarations "base/60-list.csc")) |
