1/// 业务函数库 2 3 4pub mod arr; // 加载arr同名文件的模块 5 6pub fn hello() { 7 let i = arr::array_columns(); 8 println!("i num : {}", i); 9}