add_one_emdoyle/
lib.rs

1
2
3
4
5
use rand;

pub fn add_one(x: i32) -> i32 {
    x + 1
}