mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-07 04:18:04 +08:00
10 lines
137 B
Rust
Executable File
10 lines
137 B
Rust
Executable File
fn main() {
|
|
let x: (i32, f64, u8) = (500, 6.4, 1);
|
|
|
|
let five_hundred = x.0;
|
|
|
|
let six_point_four = x.1;
|
|
|
|
let one = x.2;
|
|
}
|