pub fn add_two(x: u32) -> u32
Adds two to the number specified in the arguments
let x = 5; let y = crates_testing_bilal::add_two(x); assert_eq!(y, 7);