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