wt-hello 0.1.0

My first hello crate
Documentation
//!doc My first published crate. [wenris@yeah.net]

//!doc simple hello function
pub fn hello() -> String {
    "Hello, Rust!".to_string()
}

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

    #[test]
    fn test_hello() {
        assert_eq!(super::hello(), "Hello, Rust!");
    }
}