Define the types in the tuple



examples/tuples/define-types/src/main.rs
fn main() {
    let things: (i8, char, String) = (11, '2', String::from("three"));
    println!("{:?}", things);
}

(11, '2', "three")