rust-modules 0.1.1

My studying rust modules.
Documentation
1
2
3
4
5
6
7
pub fn item() {}

pub mod b {
    pub fn item() {}
}

pub mod bb;