pub fn add_one(x: i32) -> i32
adds one to the number given
let arg = 5; let answer = rust_study::add_one(arg); assert_eq!(6, answer);