mod_idiom 0.1.1

`mod` and `use` idiom.
Documentation
1
2
3
4
5
6
7
mod test_local;
mod test_public;

#[test]
fn test() {
    test_public::my_func();
}