[][src]Function add_one_crate::add_one

pub fn add_one(x: &mut i32)

Adds one to the number given.

Examples

let mut x = 5;
my_lib::add_one(&mut x);

assert_eq!(x, 6);