Constructions
Tuple
See: Tuple
(1, 2, "abc")
List
See: List
[8, 7, 6]
Array
See: Array
Arrays use the same construction as lists, with the exception of a size specification.
If the array size is greater than the number of elements in the list, the list is repeated until filled.
[1, 2; 4] == [1, 2, 1, 2; 4]