// TODO: Fix the compiler error about calling a private function.
modsausage_factory{// Don't let anybody outside of this module see this!
fnget_secret_recipe()-> String{String::from("Ginger")}fnmake_sausage(){get_secret_recipe();println!("sausage!");}}fnmain(){sausage_factory::make_sausage();}