anuk909 198e3148f5
Apply suggestions from code review
Co-authored-by: diannasoriel <mokou@fastmail.com>
2021-08-26 23:24:08 +03:00

21 lines
405 B
Rust

// modules1.rs
// Make me compile! Execute `rustlings hint modules1` for hints :)
// 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")
}
pub fn make_sausage() {
get_secret_recipe();
println!("sausage!");
}
}
fn main() {
sausage_factory::make_sausage();
}