mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-10 13:10:40 +00:00
16 lines
300 B
Rust
16 lines
300 B
Rust
mod sausage_factory {
|
|
// Don't let anybody outside of this module see this!
|
|
fn get_secret_recipe() -> String {
|
|
String::from("Ginger")
|
|
}
|
|
|
|
fn make_sausage() {
|
|
get_secret_recipe();
|
|
println!("sausage!");
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
sausage_factory::make_sausage();
|
|
}
|