1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-11-17 09:18:06 +11:00
collapseos/blk/437
2020-05-14 09:45:42 -04:00

14 lines
430 B
Plaintext

( Now we have "as late as possible" stuff )
: DO COMPILE 2>R H@ ; IMMEDIATE
: LOOP COMPILE (loop) H@ - , ; IMMEDIATE
( LEAVE is implemented in low xcomp )
: LITN 32 , , ( 32 == NUMBER ) ;
: _ ( : will get its name at the very end )
(entry)
[ 14 ( == compiledWord ) LITN ] C,
BEGIN
WORD (find)
IF ( is word ) DUP IMMED? IF EXECUTE ELSE , THEN
ELSE ( maybe number ) (parse) LITN THEN
AGAIN ;