A tuple is simply a concatenation of multiple values:
of possibly different types
whose number and types is known statically
For example, (1, "Hello") is a 2 elements tuple composed of a i32 and a &str, and its type is denoted as (i32, &'static str) in a similar fashion as i...