Function rust_modules::greet[][src]

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!");