mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
(ice-9 null) also exports aux syntax, syntax-rules
* module/ice-9/null.scm: Add more syntactic exports.
This commit is contained in:
parent
cc7d394490
commit
2e335635cc
1 changed files with 16 additions and 13 deletions
|
@ -18,17 +18,20 @@
|
|||
;;;; The null environment - only syntactic bindings
|
||||
|
||||
(define-module (ice-9 null)
|
||||
:re-export-syntax (define quote lambda if set!
|
||||
|
||||
cond case and or => _ ... else
|
||||
|
||||
let let* letrec
|
||||
#:re-export-syntax (define quote lambda if set!
|
||||
|
||||
cond case => _ ... else
|
||||
|
||||
and or
|
||||
|
||||
let let* letrec
|
||||
|
||||
begin do
|
||||
|
||||
delay
|
||||
|
||||
quasiquote unquote
|
||||
|
||||
begin do
|
||||
|
||||
delay
|
||||
|
||||
quasiquote
|
||||
|
||||
define-syntax
|
||||
let-syntax letrec-syntax))
|
||||
define-syntax
|
||||
let-syntax letrec-syntax
|
||||
syntax-rules))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue