pub fn greet(name: &str) -> String
Greets to the name given.
let name = "John Doe"; assert_eq!(rust_modules::greet("John Doe"), "Hello, John Doe!");