|
  
List Literal
Format: [ x, y, ... ]
Arguments: [any] x, y Series of
expressions to evaluate and combine into a list
Returns: [any] A list containing the value of all
expressions x, y, ...
Description: The List Literal operator creates a
list of all elements x, y, ... Elements can be
lists themselves, creating hierarchical lists.
Examples: [2+3,3..5,6] =
[5,[3,4,5],6]
["a","b","c"]
= [a,b,c]
[[1,2],[3,4]] = [[1,2],[3,4]]
See Also: Procedure,
Parentheses, Range, makelist, Object Literal
|