<< Home | About Forth | About TurboForth | Download | Language Reference | Resources | Tutorials | YouTube >>
In Compilation Words in TurboForth Kernal
Ends compilation of the current colon definition.
: TEST 1 2 3 . . . ;
: TEST 1 2 3 DO I . ; \ causes error
Ends compilation of the current colon definition and un-hides the definition from the dictionary, sets STATE to 0. Checks DO/LOOP FOR/NEXT and BEGIN/REPEAT etc. reference counters and errors if an un-balanced construct is detected.
STATE
DO/LOOP FOR/NEXT
BEGIN/REPEAT