mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-11 09:48:07 +08:00
8 lines
111 B
Rust
Executable File
8 lines
111 B
Rust
Executable File
fn main() {
|
|
// ANCHOR: here
|
|
if let x = 5 {
|
|
println!("{}", x);
|
|
};
|
|
// ANCHOR_END: here
|
|
}
|