Array literals
Arrays are statically sized homogeneous data structures.
l = (,) // empty array (typed (object)) l = (1, 2, 3) // integer array with three elements l = ("Eric", ) // string array with a single element
List literals
Lists are dynamically sized heterogeneous data structures.
l = [] // empty list l = ["one", 2, 3]
Hash literals
Also known as associative arrays or dictionaries.
h = {} // empty hash
h = { "spam" : "eggs" }
print(h["spam"])


