about summary refs log tree commit diff stats
path: root/schmaltz.sld
diff options
context:
space:
mode:
authorCase Duckworth2023-08-27 22:22:52 -0500
committerCase Duckworth2023-08-27 22:22:52 -0500
commit45c15fe30496311e60dba14399a0676fe084ad56 (patch)
treede31aab354afa968659d3c6fab1e7eb274f903e0 /schmaltz.sld
downloadschmaltz-45c15fe30496311e60dba14399a0676fe084ad56.tar.gz
schmaltz-45c15fe30496311e60dba14399a0676fe084ad56.zip
Initial commit
Diffstat (limited to 'schmaltz.sld')
-rw-r--r--schmaltz.sld20
1 files changed, 20 insertions, 0 deletions
diff --git a/schmaltz.sld b/schmaltz.sld new file mode 100644 index 0000000..19212b4 --- /dev/null +++ b/schmaltz.sld
@@ -0,0 +1,20 @@
1(define-library (schmaltz)
2 (export render
3 render-string
4 ;; Configuration
5 render-specials
6 render-unprintables
7 render-environment
8 ;; Re-exports
9 environment
10 )
11
12 (import (scheme base)
13 (scheme case-lambda)
14 (scheme eval)
15 (scheme read)
16 (scheme repl)
17 (scheme write)
18 (srfi 1))
19
20 (include "schmaltz.sls"))