Rust tuple - fixed-sizes, mixed, ordered collection



examples/tuples/create-tuple/src/main.rs
fn main() {
    let things = (11, '2', String::from("three"));
    println!("{}", things.0);
    println!("{}", things.1);
    println!("{}", things.2);
    println!("{:?}", things);
}

11
2
three
(11, '2', "three")