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.
 
 
 
 
MSilva95 6ba324f2f2 adding dependencies 3 years ago
..
README.md adding dependencies 3 years ago

README.md

adding

Instructions

Create the function add_curry that 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::adding;

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

student@ubuntu:~/[[ROOT]]/test$ cargo run
-5
2261
305696
student@ubuntu:~/[[ROOT]]/test$