Name

undefined:core_misc — immediate primitive

Synopsis

FORTH
[UNDEFINED] ( [name] -- flag )(); 
 ;

Description

Search the dictionary for _name_. If _name_ is found, return FALSE; otherwise return TRUE. Immediate for use in definitions.

see [DEFINED]

 : [UNDEFINED] DEFINED 0= ; IMMEDIATE