1
2
3
4
5
6
7
8
pub fn hello_world() -> &'static str {
    "hello world!"
}

#[test]
fn test_hello_world() {
    assert_eq!(hello_world(), "hello world!");
}