exercism.org/rust/hello-world/src/lib.rs

5 lines
135 B
Rust

// &'static is a "lifetime specifier", something you'll learn more about later
pub fn hello() -> &'static str {
"Goodbye, Mars!"
}