mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-24 21:32:15 +08:00
10 lines
168 B
Rust
10 lines
168 B
Rust
|
fn main() {
|
||
|
let numbers = (2, 4, 8, 16, 32);
|
||
|
|
||
|
match numbers {
|
||
|
(.., second, ..) => {
|
||
|
println!("Some numbers: {}", second)
|
||
|
},
|
||
|
}
|
||
|
}
|