mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-05 00:00:12 +00:00
44 lines
406 B
Rust
44 lines
406 B
Rust
// modules1.rs
|
|
// 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.
|