Function my_crate_vg::add_one

source ·
pub fn add_one(x: i32) -> i32
Expand description

Adds one to the number given.

Examples

let five = 5;
 
assert_eq!(6, my_crate::add_one(5));