Rubchev_D 0.1.1

Rust liberary
Documentation
//! # Rubchev_D
//!my first documantation and liabrely 🎉
//!
//! ## use case
//! ```
//! use rubchev_d::hello;
//! assert_eq!(hello(), "Hello from Rubchev_D!");
//! ```
/// Function return string.
pub fn hello() -> String {
    "Hello from my_library!".to_string()
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_hello() {
        assert_eq!(hello(), "Hello from my_library!");
    }
}