V{
Factor documentation > Factor handbook > The language > Syntax > Literals > Vector syntax


Vocabulary
syntax

Syntax
V{ elements... }


Inputs and outputs
elementsa list of objects


Word description
Marks the beginning of a literal vector. Literal vectors are terminated by }.

Examples
V{ 1 2 3 }


See also
{, H{, HS{, C{, T{, }

Definition
USING: parser vectors ;

IN: syntax

SYNTAX: V{ \ } [ >vector ] parse-literal ;