kwai_sample/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub fn hello() {
    println!("Hello Kwai");
}

pub mod depth1 {
    pub fn hello() {
        println!("Hello Kwai 1");
    }

    pub mod depth2 {
        pub fn hello() {
            println!("Hello Kwai 2");
        }
    }
}