2018-02-22 06:09:53 +00:00
|
|
|
// modules1.rs
|
2015-09-18 03:21:56 +01:00
|
|
|
// 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.
|