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

5 lines
134 B
Rust

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