modsausage_factory{fnget_secret_recipe()-> String{String::from("Ginger")}// Added `pub` before `fn` to make the function accessible outside the module.
pubfnmake_sausage(){get_secret_recipe();println!("sausage!");}}fnmain(){sausage_factory::make_sausage();}