add

Function add 

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

Adds two numbers together.

Two lonely numbers where so very sad. One lonely number said to the other: Lets add.

ยงExamples

let result = ralgebra::add(4, 5);
assert_eq!(result, 9);
Examples found in repository?
examples/demo.rs (line 4)
3fn main() {
4    let r = ralgebra::add(3, 5);
5
6    println!("{}",r);
7}