Function greet

Source
pub fn greet(name: &str) -> String
Expand description

Greets to the name given.

ยงExamples

let name = "John Doe";

assert_eq!(rust_modules::greet("John Doe"), "Hello, John Doe!");