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

8 lines
111 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
fn main() {
// ANCHOR: here
if let x = 5 {
println!("{}", x);
};
// ANCHOR_END: here
}