CompetitiveProgramming/src/main.rs

10 lines
229 B
Rust
Raw Normal View History

2024-01-01 15:34:42 +00:00
mod test_mod;
mod test_mods;
mod a_sibling_file;
2023-12-12 15:12:08 +00:00
fn main() {
2024-01-01 15:34:42 +00:00
use test_mod::a_mod::hello_world;
use test_mods::another_mod;
hello_world();
another_mod::another_fn();
a_sibling_file::sibling_mod::sibling_fn();
}