add_one_emdoyle/
lib.rs

1use rand;
2
3pub fn add_one(x: i32) -> i32 {
4    x + 1
5}