summaryrefslogtreecommitdiff
path: root/exercises/modules/modules1.rs
blob: 3f44968d2163e488ecaaedee907c76af7cb2726d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// modules1.rs
// Make me compile! Scroll down for hints :)

// I AM NOT DONE

mod sausage_factory {
    fn make_sausage() {
        println!("sausage!");
    }
}

fn main() {
    sausage_factory::make_sausage();
}




























// Everything is private in Rust by default-- but there's a keyword we can use
// to make something public! The compiler error should point to the thing that
// needs to be public.