wtfm_rs_hello_world/
lib.rs

1pub fn hello_world() -> String {
2    "Hello, world!".to_string()
3}
4
5#[cfg(test)]
6#[test]
7fn test_hello_world() {
8    assert_eq!(hello_world(), "Hello, world!");
9}