1
2
3
4
5
6
7
8
9
/// test1 is function
pub fn test1() {
    println!("test1");
}

/// test2 is function
pub fn test2() {
    println!("test2");
}