chibi-scheme/lib/srfi/99/records/syntactic.sld
Alex Shinn 6cafda8916 Decouple syntax-case from the Chibi core.
This restores third-party (ab)users of the Chibi macro system such
as in https://gist.github.com/baguette/2632464, while allowing us
to break those uses in more interesting ways.

It also keeps the core slightly smaller (both in C and Scheme)
and speeds up the macro expansion process.
2021-08-10 23:19:35 +09:00

5 lines
152 B
Scheme

(define-library (srfi 99 records syntactic)
(export define-record-type)
(import (chibi) (srfi 99 records inspection))
(include "syntactic.scm"))