// //! // //! # Snipdoc: Code Documentation Made Simple // //! readme after title // /// // fn main() { println!("Welcome to Snipdoc") } // // /// Adds two integers and returns the result. /// /// # Arguments /// /// * `a` - An integer to be added. /// * `b` - Another integer to be added. /// /// # Returns /// /// An integer that is the sum of `a` and `b`. /// /// # Examples // /// ```rust /// let result = add(3, 5); /// assert_eq!(result, 8); /// ``` // fn add(a: i32, b: i32) -> i32 { a + b } //