trpl-zh-cn/listings/ch18-patterns-and-matching/listing-18-10/src/main.rs
2022-02-06 16:43:51 +08:00

8 lines
111 B
Rust
Executable File

fn main() {
// ANCHOR: here
if let x = 5 {
println!("{}", x);
};
// ANCHOR_END: here
}