22 lines
236 B
Markdown
22 lines
236 B
Markdown
# Tuples
|
|
|
|
Uses `#()` just to avoid confusion with function calls and grouping (`()`).
|
|
|
|
## Definition
|
|
|
|
```thp
|
|
val person = #("John", "Doe", 32)
|
|
|
|
val #(name, surname, age) = person
|
|
```
|
|
|
|
|
|
## Signature
|
|
|
|
```thp
|
|
#(String, String, Int)
|
|
```
|
|
|
|
|
|
|