hello_exercism 0.5.5

how to create an own crate
Documentation
1
2
3
4
5
6
7
8
9
10
// Rust File: tests/i_hello.rs
#[test]
fn it_works_with_extern() {
    assert_eq!("Hello, World!", i_crate::hello());
}

#[test]
fn it_works_with_the_crate_and_extern() {
    assert_eq!(hello_exercism::hello(), i_crate::hello());
}