, ( elt -- )
Factor documentation > Factor handbook > The language > Collections > Making sequences with variables
Prev:make ( quot exemplar -- seq )
Next:% ( seq -- )


Vocabulary
make

Inputs and outputs
eltan object


Word description
Adds an element to the end of the sequence being constructed by make.

Definition
USING: namespaces sequences ;

IN: make

: , ( elt -- ) building get push ;