exercism/rust/hello-world/src/lib.rs
2025-05-06 14:59:17 +03:00

4 lines
135 B
Rust

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