1
2
3
4
5
pub mod greet{
    pub fn greet_me(x: &String){
        println!("Welcome {} !!", &x);
    }
}