gensym ( -- word )
Factor handbook » The language » Words » Word introspection » Uninterned words

Prev:<uninterned-word> ( name -- word )
Next:define-temp ( quot effect -- word )


Vocabulary
words

Inputs
None

Outputs
worda word


Word description
Creates an uninterned word that is not equal to any other word in the system.

Examples
USING: prettyprint words ; gensym .
( gensym )


Notes
Unlike create-word, this word does not have to be called from inside with-compilation-unit.

Definition

: gensym ( -- word ) "( gensym )" <uninterned-word> ;