Tuples
Uses #()
just to avoid confusion with function calls and grouping (()
).
Definition
val person = #("John", "Doe", 32)
╰╴No statement matched
val #(name, surname, age) = person
thp
Signature
#(String, String, Int)
╰╴No statement matched
thp