[][src]Function a793556702::say_hello

pub fn say_hello(name: &str) -> String

Says hello

Example

use a793556702::say_hello;
 
let message = say_hello("Fred");
assert_eq!("Hello, Fred!", message);