<< Home | About Forth | About TurboForth | Download | Language Reference | Resources | Tutorials | YouTube >>


FORGET Search:

In Interpreter Words in TurboForth Kernal

Word Name: FORGET
Type: Standard word
Data Stack Signature:
Return Stack Signature: --
Availability: V1.0  V1.1  V1.2
Description:

Removes word “word”, and all words following it, from the dictionary.

Example:

: TEST1 1 2 3 ;
: TEST2 4 5 6 ;
FORGET TEST1

TEST1

(not found)

TEST2

(not found)

Comment:

Cannot be used in a colon definition. Can be used in a block. The word to erase follows the word FORGET.

The dictionary pointers HERE and H are updated, as are the low and high memory pointers FFAILM and FFAIHM.

See Also: H  FFAIHM  FFAILM  HERE  MARKER 

<< Home | About Forth | About TurboForth | Download | Language Reference | Resources | Tutorials | YouTube >>