Garden 🌻

Tuple type

A tuple is a fixed-size collection where each item can have a distinct type. For example, (123, "foo").

examplefun example(): (Int, String) {
  (456, "bar")
}