Tuples are immutable ordered collections of arbitrary distinct objects, either of the same type or of different types. Typically, tuples are constructed using the (x, y) syntax.
julia> tup = (1, 1.0, "Hello, World!")
(1,1.0,"Hello, World!")
The individual objects of a tup...