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