2018-02-22 08:09:53 +02:00
|
|
|
// modules1.rs
|
2019-11-11 17:51:38 +02:00
|
|
|
// Make me compile! Execute `rustlings hint modules1` for hints :)
|
2015-09-18 04:21:56 +02:00
|
|
|
|
2019-11-11 14:38:24 +02:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2015-09-18 04:21:56 +02:00
|
|
|
mod sausage_factory {
|
2021-09-03 10:41:12 +02:00
|
|
|
// Don't let anybody outside of this module see this!
|
|
|
|
fn get_secret_recipe() -> String {
|
|
|
|
String::from("Ginger")
|
|
|
|
}
|
|
|
|
|
2015-09-18 04:21:56 +02:00
|
|
|
fn make_sausage() {
|
2021-09-03 10:41:12 +02:00
|
|
|
get_secret_recipe();
|
2015-09-18 04:21:56 +02:00
|
|
|
println!("sausage!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
sausage_factory::make_sausage();
|
|
|
|
}
|