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