trpl-zh-cn/listings/ch06-enums-and-pattern-matching/listing-06-06/src/main.rs

10 lines
208 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
fn main() {
// ANCHOR: here
let config_max = Some(3u8);
match config_max {
Some(max) => println!("The maximum is configured to be {max}"),
2022-02-06 16:43:51 +08:00
_ => (),
}
// ANCHOR_END: here
}