add_two

Function add_two 

Source
pub fn add_two(x: u32) -> u32
Expand description

Adds two to the number specified in the arguments

ยงExamples

let x = 5;
let y = crates_testing_bilal::add_two(x);
assert_eq!(y, 7);