rust 多文件工程
调用另外一个文件testDefault里的函数
mod testDefault; mod testDefault2; use testDefault::Foo; fn main() { println!("Hello, world!"); let a = Foo::new(); }