diff options
author | Case Duckworth | 2023-08-13 22:49:03 -0500 |
---|---|---|
committer | Case Duckworth | 2023-08-13 22:49:03 -0500 |
commit | 3d55e7c3cf228271ddc25203cad64fbdcba9342a (patch) | |
tree | 851de8c2399975ad3d6d82cff23929616533897e /chicanery.sld | |
parent | Remove talk of impls that apparently don't work (diff) | |
download | chicanery-3d55e7c3cf228271ddc25203cad64fbdcba9342a.tar.gz chicanery-3d55e7c3cf228271ddc25203cad64fbdcba9342a.zip |
I don't even know any more
Diffstat (limited to 'chicanery.sld')
-rw-r--r-- | chicanery.sld | 23 |
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))) | ||