2018-02-22 06:09:53 +00:00
|
|
|
// modules1.rs
|
2019-11-11 15:51:38 +00:00
|
|
|
// Make me compile! Execute `rustlings hint modules1` for hints :)
|
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();
|
|
|
|
}
|