trpl-zh-cn/listings/ch13-functional-features/listing-13-03/src/main.rs

9 lines
176 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
fn main() {
2023-01-16 17:34:52 +08:00
// ANCHOR: here
let example_closure = |x| x;
2022-02-06 16:43:51 +08:00
2023-01-16 17:34:52 +08:00
let s = example_closure(String::from("hello"));
let n = example_closure(5);
// ANCHOR_END: here
2022-02-06 16:43:51 +08:00
}