[][src]Function tomoko_cargo_more::add_two

pub fn add_two(x: i32) -> i32

Add two to the number given

Examples

let arg = 1;
let answer = tomoko_cargo_more::add_two(arg);

assert_eq!(answer, 3);