modules_demo 0.1.0

Demo created
Documentation
1
2
3
4
5
pub fn c1() {
    println!("In c1 fn..of mod c..");
    use super::b::b2;
    b2();
}