about summary refs log tree commit diff stats
path: root/chicanery.sld
diff options
context:
space:
mode:
Diffstat (limited to 'chicanery.sld')
-rw-r--r--chicanery.sld23
1 files changed, 0 insertions, 23 deletions
diff --git a/chicanery.sld b/chicanery.sld deleted file mode 100644 index 3a179c1..0000000 --- a/chicanery.sld +++ /dev/null
@@ -1,23 +0,0 @@
1(cond-expand
2 (chicken
3 (include "impl/chicken.scm"))
4 (guile
5 (install-r7rs!)
6 (include "impl/guile.scm")
7 (include "extras.scm")
8 (export! append for-each map
9 list-append list-for-each list-map
10 ref copy
11 atom?
12 read-port read-port-chunk-size
13 defined?
14 with-output-to-string with-input-from-string
15 displayed ->string written
16 print))
17 (gambit
18 (include "impl/gambit.scm"))
19 (r7rs
20 (display "R7RS!\n")
21 (define-library (chicanery)
22 (include "impl/r7rs.scm")))
23 (else (exit #f)))