1
2
3
4
5
6
7
//! A Simple Hello World Crate
extern crate hevayo_greetings;

/// This function returns the greeting; `Hello, world!`
pub fn hello(){
    hevayo_greetings::hello();
}