;; Runtime support for forth macro compilation. (module macro-runtime mzscheme (require "macro-prim.ss") (provide (all-defined)) ;; The runtime support for macro-stx and macro-rpn is implemented here. (define (postponed-word symbol) (macro-prim: 'symbol compile)) (define (postponed-literal atom) (macro-prim: 'atom literal)) )