1pub fn hello_world() -> &'static str { 2 "hello world!" 3} 4 5#[test] 6fn test_hello_world() { 7 assert_eq!(hello_world(), "hello world!"); 8}