summaryrefslogtreecommitdiff
path: root/exercises/10_modules/modules1.rs
blob: 931a3e26cb1145c79e2905b9a7938f3e7592982d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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();
}