mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-09 22:08:06 +08:00
8 lines
112 B
Rust
8 lines
112 B
Rust
|
fn main() {
|
||
|
let tup = (500, 6.4, 1);
|
||
|
|
||
|
let (x, y, z) = tup;
|
||
|
|
||
|
println!("The value of y is: {}", y);
|
||
|
}
|