mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-24 21:32:15 +08:00
11 lines
182 B
Rust
11 lines
182 B
Rust
|
fn main() {
|
||
|
// ANCHOR: here
|
||
|
let x = 5;
|
||
|
|
||
|
match x {
|
||
|
1..=5 => println!("one through five"),
|
||
|
_ => println!("something else"),
|
||
|
}
|
||
|
// ANCHOR_END: here
|
||
|
}
|