//!doc My first published crate. [wenris@yeah.net]
//!doc simple hello function
pubfnhello()-> String{"Hello, Rust!".to_string()}#[cfg(test)]modtests{#[test]fnit_works(){assert_eq!(2+2,4);}#[test]fntest_hello(){assert_eq!(super::hello(),"Hello, Rust!");}}