Lists
These are a grouping of any number of elements. They may be the
element assigned to a field, or nested within another list as one of its'
elements. They are delimited by opening and closing "square" brackets ([ ]).
The elements contained are separated by whitespace.
They have no strict type requirements for their elements, meaning it can hold numbers, strings, maps and other lists.
favorite-movies = [
"Interstellar"
"The Witch"
"Kill Bill Vol. 1"
];
list-of-lists = [
[ 1 2 3 ]
[ true false null ]
[ "foo" "bar" ]
[
{ name = "Will"; age = 26; }
{ name = "Floyd"; age = 29; }
]
];