pub fn add_two(x: i32) -> i32
Adds two to the number given.
let arg = 5; let answer = calchy::add_two(arg); assert_eq!(7, answer);