Appearance
fn main() { let tup: (i32, f64, u8) = (500, 6.4, 1); // 解构 let (x, y, z) = tup; // 访问 tup.0 // 500 tup.1 // 6.4 tup.2 // 1 }