Adv functions calling function from other files hello.rs: pub fn helloworld() { println!("Hello, World!"); } main.rs: mod hello; fn main() { hello::helloworld(); } $ cargo run