pub fn add_one(x: u32) -> u32
Adds one to a number that is specified in the arguments
let x = 5; let y = crates_testing_bilal::add_one(x); assert_eq!(y, 6);