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