pub fn add_one(x: i32) -> i32
给定的数字加1
let arg = 5; let answer = rain_example_crate::add_one(arg); assert_eq!(answer, 6);