mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-20 14:19:18 +02:00
12 lines
295 B
Text
12 lines
295 B
Text
|
|
(define-module (chibi ast)
|
|
(export analyze
|
|
lambda? cnd? set? ref? seq? lit?
|
|
lambda-name lambda-params lambda-body
|
|
cnd-test cnd-pass cnd-fail
|
|
set-var set-value
|
|
ref-name ref-cell
|
|
seq-ls
|
|
lit-value)
|
|
(include-shared "ast"))
|
|
|