Version: 4.1.3
1 Old Syntactic Forms
Like #%plain-module-begin from scheme/base,
but (require-for-syntax mzscheme) is added to the beginning
of the form sequence, thus importing mzscheme
into the transformer environment for the module body. (In contrast,
scheme/base exports for-syntax minimal
transformer support, while scheme exports all of
scheme/base for-syntax.
The same binding as #%plain-module-begin from
scheme/base.
The same binding as #%plain-lambda in
scheme/base. (This binding was not present in
version 372 and earlier.)
The same bindings as #%plain-lambda.
The same binding as #%plain-app from
scheme/base.
The same binding as #%app. (This binding was not present in
version 372 and earlier.)
(define id expr) |
(define (head args) body ...+) |
|
head | | = | | id | | | | | | (head args) | | | | | | args | | = | | arg-id ... | | | | | | arg-id ... . rest-id |
|
Like define in scheme/base, but without
support for keyword arguments or optional arguments.
(if test-expr then-expr else-expr) |
(if test-expr then-expr) |
Like if in scheme/base, but else-expr
defaults to (void).
|
(case val-expr case-clause ...) |
|
Like cond and case in scheme/base, but
else and => are recognized as unbound identifiers,
instead of as the scheme/base bindings.
Provides a kind of dynamic binding via mutation of the ids.
The fluid-let form first evaluates each expr to
obtain an entry value for each id. As evaluation
moves into body, either though normal evaluation or a
continuation jump, the current value of each id is swapped
with the entry value. On exit from body, then the current
value and entry value are swapped again.
(define-struct id-maybe-super (field-id ...) maybe-inspector-expr) |
|
maybe-inspector-expr | | = | | | | | | | | expr |
|
Like define-struct from scheme/base, but with fewer
options. Each field is implicitly mutable, and the optional
expr is analogous to supplying an #:inspector
expression.
(let-struct id-maybe-super (field-id ...) body ...+) |
Expands to
Like #%require and #%provide. The
-for-syntax, -for-template, and
-for-label forms are translated to #%require
and #%provide using for-syntax,
for-template, and for-label sub-forms,
respectively.
Expands to 'datum, even if datum is a
keyword.
The same as #%top-interaction in scheme/base.