Tuples

Tuples are immutable lists, and all the types of the elements are known at compile time.

See:

a_tuple = {42, 84, "John", 'C'}
p typeof(a_tuple) # => Tuple(Int32, Int32, String, Char)