chickadee » begin-syntax » begin-syntax

(begin-syntax EXPR ...)syntax

Evaluates its body and immediately inserts the final result into the program, as though by macro expansion.

If the result is a macro transformer, it is immediately invoked with no arguments and the result is inserted into the program.

This form can be thought of as a macro definition followed by its immediate expansion, for example:

(begin-syntax '(+ 1 2))

; => (let-syntax ((a (er-macro-transformer
;                     (lambda (_ _ _) '(+ 1 2)))))
;      (a))