pub fn add_one(x: i32) -> i32
Adds one to the number given
use rust_cheatsheet::theory; let x = 1; let y = theory::add_one(x); assert_eq!(y, x + 1);