blob: 812dfeeff14985f7d363afc1644a89685c4e66f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// 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();
}
|