racket/collects/srfi/69.ss
2008-02-23 09:42:03 +00:00

11 lines
408 B
Scheme

;; module loader for SRFI-69
(module |69| mzscheme
(require srfi/69/hash)
(provide (all-from-except srfi/69/hash
s:make-hash-table
s:hash-table?
s:hash-table-copy)
(rename s:make-hash-table make-hash-table)
(rename s:hash-table? hash-table?)
(rename s:hash-table-copy hash-table-copy)))