diff options
| author | 2025-11-03 22:55:50 -0500 | |
|---|---|---|
| committer | 2025-11-03 22:55:50 -0500 | |
| commit | 860e3809928b6bcca55e38131e279cdcb01d8be7 (patch) | |
| tree | 66d866be9b2034394ab4427e80574377ef02e71f /lib/cuprate/implementation/gauche.sld | |
| parent | considering continuations (diff) | |
start moving implementation-dependent code into separate libraries
Diffstat (limited to 'lib/cuprate/implementation/gauche.sld')
| -rw-r--r-- | lib/cuprate/implementation/gauche.sld | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/cuprate/implementation/gauche.sld b/lib/cuprate/implementation/gauche.sld new file mode 100644 index 0000000..627ff5c --- /dev/null +++ b/lib/cuprate/implementation/gauche.sld @@ -0,0 +1,9 @@ +(define-library (cuprate implementation gauche) + (import (scheme base) (scheme show) (srfi 225)) + (export pretty-print default-test-dto + alist->default-dictionary) + (begin + (define (pretty-print obj) + (show #t (pretty obj))) + (define default-test-dto eqv-alist-dto) + (define (alist->default-dictionary x) x)))
\ No newline at end of file |
