Expand/Shrink

Sequence Formation

Finally, sequence-formation, using braces and commas:
    {a, b, c, ... }
is also an operator. It takes n operands, where n is 0 or more, and makes an n-element sequence from their values. e.g.
    x = {apple, orange*2, {1,2,3}, 99/4+foobar}
See Also: The sequence-formation operator is listed at the bottom of the precedence chart.
Expand/Shrink