summary refs log tree commit diff stats
path: root/rust/hello-world/src/lib.rs
blob: 5c2db6db34ef209a195d2d4f8784c40521e50836 (plain) (blame)
1
2
3
4
// &'static is a "lifetime specifier", something you'll learn more about later
pub fn hello() -> &'static str {
    "Hello, World!"
}