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/chicken.sld | |
| parent | considering continuations (diff) | |
start moving implementation-dependent code into separate libraries
Diffstat (limited to 'lib/cuprate/implementation/chicken.sld')
| -rw-r--r-- | lib/cuprate/implementation/chicken.sld | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/cuprate/implementation/chicken.sld b/lib/cuprate/implementation/chicken.sld new file mode 100644 index 0000000..a9bff2d --- /dev/null +++ b/lib/cuprate/implementation/chicken.sld @@ -0,0 +1,9 @@ +(define-library (cuprate implementation chicken) + (import (scheme base) (chicken pretty-print) + (srfi 128) (srfi 146 hash) (srfi 225)) + (export pretty-print default-test-dto + alist->default-dictionary) + (begin + (define default-test-dto hash-mapping-dto) + (define (alist->default-dictionary x) + (alist->hashmap (make-default-comparator) x))))
\ No newline at end of file |
