mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-24 13:22:19 +08:00
10 lines
174 B
Rust
Executable File
10 lines
174 B
Rust
Executable File
fn main() {
|
|
let numbers = (2, 4, 8, 16, 32);
|
|
|
|
match numbers {
|
|
(first, .., last) => {
|
|
println!("Some numbers: {first}, {last}");
|
|
}
|
|
}
|
|
}
|