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


Vocabulary
make

Inputs and outputs
seqa sequence


Word description
Appends a sequence to the end of the sequence being constructed by make.

Definition
USING: namespaces sequences ;

IN: make

: % ( seq -- ) building get push-all ;