Function add

Source
pub fn add(a: i32, b: i32) -> i32
Expand description

Adds two numbers together

ยงExamples

let answer = cargo_io::add(1,2);
assert_eq!(3, answer);