rustlings/exercises/modules/modules1.rs

15 lines
237 B
Rust
Raw Normal View History

2021-07-08 02:58:36 +07:00
// 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();
}