1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-01-18 00:00:02 +03:00
rustlings/exercises/modules/modules1.rs

15 lines
237 B
Rust

// modules1.rs
// Make me compile! Execute `rustlings hint modules1` for hints :)
// I AM NOT DONE
mod sausage_factory {
fn make_sausage() {
println!("sausage!");
}
}
fn main() {
sausage_factory::make_sausage();
}