mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2024-11-14 21:11:31 +08:00
9 lines
177 B
Rust
9 lines
177 B
Rust
fn main() {
|
|
let some_option_value: Option<i32> = None;
|
|
// ANCHOR: here
|
|
if let Some(x) = some_option_value {
|
|
println!("{x}");
|
|
}
|
|
// ANCHOR_END: here
|
|
}
|