/// Adds one to the number given. /// /// # Examples /// /// ``` /// let five = 5; /// /// assert_eq!(6, my_crate::add_one(5)); /// ``` pub fn ad_both(x: i32) -> i32 { x + 1 } fn main(){ //s }