Hariettemaina f19c9d9552 2nd commit
2022-09-19 16:59:38 +03:00

21 lines
406 B
Rust

// modules1.rs
// Execute `rustlings hint modules1` or use the `hint` watch subcommand for a hint.
mod sausage_factory {
// Don't let anybody outside of this module see this!
fn get_secret_recipe() -> String {
String::from("Ginger")
}
pub fn make_sausage() {
get_secret_recipe();
println!("sausage!");
}
}
fn main() {
sausage_factory::make_sausage();
}