mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-18 21:29:19 +02:00
8 lines
266 B
Scheme
8 lines
266 B
Scheme
|
|
(define-library (chibi binary-record)
|
|
(import (scheme base)
|
|
(srfi 1) (srfi 9) (srfi 33)
|
|
(chibi io) (chibi string)
|
|
(only (chibi) identifier? er-macro-transformer))
|
|
(export define-binary-record-type)
|
|
(include "binary-record.scm"))
|