gensym ( -- word )
Factor documentation > Factor handbook > The language > Words > Word introspection > Uninterned words
Prev:<uninterned-word> ( name -- word )
Next:define-temp ( quot effect -- word )


Vocabulary
words

Inputs and 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, this word does not have to be called from inside with-compilation-unit.

Definition
IN: words

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