mirror of
https://github.com/rust-lang/rustlings.git
synced 2026-01-09 20:29:18 +00:00
18 lines
282 B
Rust
18 lines
282 B
Rust
// modules1.rs
|
|
//
|
|
// Make me compile!
|
|
//
|
|
// If you need help, open the corresponding README.md or run: rustlings hint modules1
|
|
|
|
// I AM NOT DONE
|
|
|
|
mod sausage_factory {
|
|
fn make_sausage() {
|
|
println!("sausage!");
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
sausage_factory::make_sausage();
|
|
}
|