Enrico Bozzolini 07de819eee Current status
2020-05-22 22:03:52 +02:00

13 lines
223 B
Rust

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