mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-24 13:22:19 +08:00
10 lines
108 B
Rust
10 lines
108 B
Rust
|
fn main() {
|
||
|
let x = 4;
|
||
|
|
||
|
let equal_to_x = |z| z == x;
|
||
|
|
||
|
let y = 4;
|
||
|
|
||
|
assert!(equal_to_x(y));
|
||
|
}
|