add_one

Function 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, cargo::add_one(5));