mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-20 14:19:18 +02:00
Syntax may now also be bound with (define-syntax macro1 macro2), and likewise with let-syntax.
7 lines
228 B
Scheme
7 lines
228 B
Scheme
|
|
(define-library (chibi repl)
|
|
(export repl)
|
|
(import (scheme) (only (meta) load-module)
|
|
(chibi ast) (chibi io) (chibi process) (chibi term edit-line)
|
|
(srfi 18) (srfi 38) (srfi 98))
|
|
(include "repl.scm"))
|