trpl-zh-cn/listings/ch18-patterns-and-matching/listing-18-24/src/main.rs

10 lines
174 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
fn main() {
let numbers = (2, 4, 8, 16, 32);
match numbers {
(first, .., last) => {
2023-01-16 17:34:52 +08:00
println!("Some numbers: {first}, {last}");
2022-02-06 16:43:51 +08:00
}
}
}