thp-lang.org/md/learn/collections/tuples.md
2023-10-01 20:41:38 -05:00

23 lines
223 B
Markdown

# Tuples
Uses `#()` just to avoid confusion with function
calls (`()`).
## Definition
```thp
val person = #("John", "Doe", 32)
val #(name, surname, age) = person
```
## Signature
```thp
#(String, String, Int)
```