trpl-zh-cn/listings/ch18-patterns-and-matching/listing-18-25/src/main.rs
2022-02-06 16:43:51 +08:00

10 lines
168 B
Rust
Executable File

fn main() {
let numbers = (2, 4, 8, 16, 32);
match numbers {
(.., second, ..) => {
println!("Some numbers: {}", second)
},
}
}