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


CLOAD Search:

In Block I/O Words in TurboForth Kernal

Word Name: CLOAD
Type: Immediate word
Data Stack Signature: block --
Return Stack Signature: --
Availability: V1.0  V1.1  V1.2
Description:

Conditionally loads block if the word immediately following CLOAD is not found after a dictionary search.

Example:

69 CLOAD SAMS?

The above will load block 69 if the word SAMS? is not found in the dictionary.

Comment:

Note, this is an immediate word. Not to be used in a colon definition. Typically, this word will only be used inside of a block, outside of a colon definition, to load an extension library if the library is not already loaded.

See Also: LOAD 

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