pub fn say_hello(who: impl Display) -> String
Say hello to whoever you specify.
let greeting = say_hello("world"); assert_eq!("hello, world!", &greeting);