1
2
3
4
5
6
7
pub mod make_shape{
    pub mod circle{
        pub fn make_circle(){
            println!("This is a sample library...");
        }
    }
}