From: Tim Vaughan Date: Mon, 12 Jun 2017 07:25:20 +0000 (+1200) Subject: Added stubs for macro expansion words. X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=scheme.forth.jl.git;a=commitdiff_plain;h=02868ff84afc9b2fb4fafa7247d09ee2a1e98f59 Added stubs for macro expansion words. --- diff --git a/src/scheme.4th b/src/scheme.4th index 1068229..3931dad 100644 --- a/src/scheme.4th +++ b/src/scheme.4th @@ -1766,6 +1766,15 @@ hide env extend-env eval-sequence eval ; +: expand-quasiquote ; +: expand-definition ; +: expand-assignment ; +: expand-define-macro ; +: expand-if ; +: expand-lambda ; +: expand-begin ; +: expand-application ; + :noname ( exp -- result ) quasiquote? if expand-quasiquote exit then