Function tcy_my_crate::add_one[][src]

pub fn add_one(nb: i32) -> i32
Expand description

add one to the given number

examples

let arg = 41;
let answer = tcy_my_crate::add_one(arg);

assert_eq!(42, answer);