hello_exercism 0.5.5

how to create an own crate
Documentation
1
2
3
4
5
6
7
8
// Rust File: tests/u_hello.rs
#[cfg(test)]
mod tests {
    #[test]
    fn it_works_at_uint() {
        assert_eq!("Hello, World!", hello_exercism::hello());
    }
}