mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 05:39:18 +02:00
8 lines
272 B
Scheme
8 lines
272 B
Scheme
|
|
(define-library (chibi monad environment)
|
|
(export define-environment-monad)
|
|
(import (scheme base))
|
|
(cond-expand
|
|
(chibi (import (only (chibi) syntax-quote)))
|
|
(else (begin (define-syntax syntax-quote (syntax-rules ((_ x) 'x))))))
|
|
(include "environment.scm"))
|