comments_lansscar 0.1.0

It's a test to publish a crate to Crate.io
Documentation
//! # comments
//!
//! `comments` is a collection to test the doc.

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

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}