trpl-zh-cn/listings/ch13-functional-features/listing-13-12/src/main.rs
2022-02-06 16:43:51 +08:00

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));
}