2018-02-22 06:09:53 +00:00
|
|
|
// modules1.rs
|
2022-07-14 10:35:49 +00:00
|
|
|
// Execute `rustlings hint modules1` or use the `hint` watch subcommand for a hint.
|
2015-09-18 02:21:56 +00:00
|
|
|
|
2019-11-11 12:38:24 +00:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2015-09-18 02:21:56 +00:00
|
|
|
mod sausage_factory {
|
2021-09-03 08:41:12 +00:00
|
|
|
// Don't let anybody outside of this module see this!
|
|
|
|
fn get_secret_recipe() -> String {
|
|
|
|
String::from("Ginger")
|
|
|
|
}
|
|
|
|
|
2015-09-18 02:21:56 +00:00
|
|
|
fn make_sausage() {
|
2021-09-03 08:41:12 +00:00
|
|
|
get_secret_recipe();
|
2015-09-18 02:21:56 +00:00
|
|
|
println!("sausage!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
sausage_factory::make_sausage();
|
|
|
|
}
|