2025-07-10 01:40:39 -06:00

17 lines
372 B
Rust

// TODO: Fix the compiler error about calling a private function.
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();
}