1 2 3 4 5 6 7 8 9 10
import gleam/io pub fn main() { let triple = #(1, 2.2, "three") io.debug(triple) let #(a, _, _) = triple io.debug(a) io.debug(triple.1) }