Function samples::say_hello

source ·
pub fn say_hello(who: impl Display) -> String
Expand description

Say hello to whoever you specify.

§Examples


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