blob: a541373979bc8b845ee648dc9f3fd4c1725ed9ce [file] [log] [blame] [view] [edit]
A tuple is a collection of values of different types. Tuples are constructed
using parentheses `()`, and each tuple itself is a value with type signature
`(T1, T2, ...)`, where `T1`, `T2` are the types of its members. Functions can
use tuples to return multiple values, as tuples can hold any number of values.
{tuples.play}