pub fn add_two(x: i32) -> i32
Expand description

Adds two to the number given.

Examples

let arg = 5;
let answer = calchy::add_two(arg);
 
assert_eq!(7, answer);