[][src]Function ralgebra::add

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

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);