Function samples::hello_world

source ·
pub fn hello_world() -> &'static str
Expand description

Say hello to the world.

§Examples


let greeting = hello_world();
assert_eq!("hello, world!", greeting);