mirror of https://github.com/KaiserY/trpl-zh-cn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
211 B
14 lines
211 B
3 years ago
|
fn add_one(x: i32) -> i32 {
|
||
|
x + 1
|
||
|
}
|
||
|
|
||
|
fn do_twice(f: fn(i32) -> i32, arg: i32) -> i32 {
|
||
|
f(arg) + f(arg)
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
let answer = do_twice(add_one, 5);
|
||
|
|
||
|
println!("The answer is: {}", answer);
|
||
|
}
|