mirror of https://github.com/01-edu/public.git
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.
davhojt
57ef30f7ba
|
2 years ago | |
---|---|---|
.. | ||
README.md | 2 years ago |
README.md
adding
Instructions
Create the function add_curry
, which returns a closure.
The purpose is to 'curry' the add method to create more variations.
Usage
Here is a program to test your function.
use adding::add_curry;
fn main() {
let add10 = add_curry(-10);
let add20 = add_curry(2066);
let add30 = add_curry(300000);
println!("{}", add10(5));
println!("{}", add20(195));
println!("{}", add30(5696));
}
And its output:
$ cargo run
-5
2261
305696
$