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


CREATE Search:

In Compilation Words in TurboForth Kernal

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

Reads forward in the terminal input buffer and creates a word in the dictionary whose run-time behaviour is to return the body address of the newly created word.

Example:

CREATE FRED 99 ,
FRED @ .

(displays 99)

Comment:

none

See Also: >BODY  DOES> 

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