Rust

module中的fn导入

2019-10-26  本文已影响0人  空乱木

其他module中的fn导入
1- main.rs
pub mod test;

fn main(){
test::import_function();
}

2- test.rs
pub fn import_function(){
print!("in test.rs import_function");
}

上一篇下一篇

猜你喜欢

热点阅读