Developers can declare a tuple like any other variable or constant. A tuple literal is a list of values separated by commas between a pair of parentheses.
var person = ("John", "Smith")
You can name the elements from a tuple and use those names to refer to them.
var point = (x: 15, y: 30)