macro-expand   scheme


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/runtime/init.xtm

Implementation

;;;; Utility to ease macro creation
(define (macro-expand form)
  ((eval (get-closure-code (eval (car form)))) form))


Back to Index