<word> ( name vocab -- word )
Factor handbook » The language » Words » Word introspection » Uninterned words

Next:<uninterned-word> ( name -- word )


Vocabulary
words

Inputs
namea string
vocaba string


Outputs
worda word


Word description
Allocates a word with the specified name and vocabulary. User code should call <uninterned-word> to create uninterned words and create-word to create interned words, instead of calling this constructor directly.

Notes
This word must be called from inside with-compilation-unit.

Definition