This commit is contained in:
Micah Kendall 2022-11-27 00:30:35 +11:00 committed by Lucas
parent be4e489380
commit 45edc3e622
1 changed files with 8 additions and 0 deletions

View File

@ -1 +1,9 @@
# Tuple
Tuples are anonymous product types. They are useful for passing combinations of data between functions.
```
let x = (1, 2)
let y = (3, 4)
pairAdder(x, y) -- --> (4, 6)
```