1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-20 12:22:35 +02:00
rustlings/modules/modules1.rs
Carol (Nichols || Goulding) 9336aed2b9 Add module exercises from jdm! 🎉
Fixes #9.
2015-09-17 22:21:56 -04:00

43 lines
391 B
Rust

// Make me compile! Scroll down for hints :)
mod sausage_factory {
fn make_sausage() {
println!("sausage!");
}
}
fn main() {
sausage_factory::make_sausage();
}
// Everything is private in Rust by default-- but there's a keyword we can use
// to make something public! The compiler error should point to the thing that
// needs to be public.