You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
424 B
23 lines
424 B
2 months ago
|
// modules1.rs
|
||
|
//
|
||
|
// Execute `rustlings hint modules1` or use the `hint` watch subcommand for a
|
||
|
// hint.
|
||
|
|
||
|
// I AM NOT DONE
|
||
|
|
||
|
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();
|
||
|
}
|