modules_demo 0.1.0

Demo created
Documentation
1
2
3
4
5
6
7
fn b1() {
    println!("In b1 fn..of mod b..");
}
pub fn b2() {
    println!("In b2 fn..of mod b..");
    b1();
}