izz-say-hello 0.2.0

This is say hello library
Documentation
1
2
3
4
5
6
7
pub fn say_hello(name: &str) -> String {
    format!("Hello {}", name)
}

pub fn say_goodbye(name: &str) -> String {
    format!("Bye {}", name)
}