mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-05 00:00:12 +00:00
15 lines
237 B
Rust
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();
|
|
}
|