Broken draft of vocab implementation.
[forth.jl.git] / src / lib_1_basic.4th
index 90fad63..dc8c584 100644 (file)
     ['] LIT , ,
 ;
 
+: LATEST
+    CURRENT @ ;
+
 : RECURSE IMMEDIATE
         LATEST @        \ LATEST points to the word being compiled at the moment
-        >CFA            \ get the codeword
+        LFA>CFA         \ get the codeword
         ,               \ compile it
 ;