make-environment   macro


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

Implementation

(macro (make-environment form)
       `(apply (lambda ()
                 ,@(cdr form)
                 (current-environment))))


Back to Index