Tuple
A tuple is a fixed-size collection where each item can have a distinct type. For example, (123, "foo").
(123, "foo")
examplefun example(): (Int, String) { (456, "bar") }
fun example(): (Int, String) { (456, "bar") }