X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?a=blobdiff_plain;f=src%2Flib_1_basic.4th;h=a5bb701d44396297c729c2e234546038dc6d7fea;hb=HEAD;hp=21c7b9388e4a2b0b36fe2c2dad7efe70bd49a9f3;hpb=ebff3ca5a9b2dd5a6608b696e7862aa7264f6682;p=forth.jl.git diff --git a/src/lib_1_basic.4th b/src/lib_1_basic.4th index 21c7b93..a5bb701 100644 --- a/src/lib_1_basic.4th +++ b/src/lib_1_basic.4th @@ -64,14 +64,14 @@ ['] LIT , , ; -\ LFA of most recent definition -: LATEST - CURRENT @ 1+ ; +\ Convert vocabulary CFA to link addr it contains +: VOCAB>LATEST + 1+ @ +; \ Compile in recursive call to current word : RECURSE IMMEDIATE - LATEST @ \ LATEST points to the word being compiled at the moment + CURRENT @ VOCAB>LATEST LINK> \ get the codeword , \ compile it ; -