about summary refs log tree commit diff stats
path: root/schmaltz.sld
diff options
context:
space:
mode:
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"))