| title | Lists |
|---|
Lists are an ordered list of elements of possibly different types identified by a number index. Each element in a list can be accessed individually by their index. Lists are constructed as a comma separated list of elements, can contain any type of value, and are enclosed by square brackets:
[
"Ghost",
57.3,
function(x) { x * x}
]You can access any element in a list by calling the subscript operator on it with the index of the element you want. Like most languages, indices start at zero:
vocabulary := ["activation", "propogate", "execute", "initialize"]
print(vocabulary[0]) // >> activation
print(vocabulary[1]) // >> propogate
print(vocabulary[2]) // >> execute
print(vocabulary[3]) // >> initialize