aboutsummaryrefslogtreecommitdiffstats
path: root/lib/cuprate/implementation/skint.sld
blob: b2ce9214dd6ccea19c6e159389259178b8027f52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
(define-library (cuprate implementation skint)
  (import (scheme base) (srfi 128) (srfi 146 hash) (scheme write)
          (srfi 225)
          )
  (export pretty-print default-test-dto
          alist->default-dictionary)
  (begin
    (define (pretty-print obj)
      (write obj)
      (newline))
    (define default-test-dto hash-mapping-dto)
    (define (alist->default-dictionary x)
      (alist->hashmap (make-default-comparator) x))))