summaryrefslogtreecommitdiff
path: root/exercises/functions/functions2.rs
blob: c5b44180b3573db8512e930dc0327be872c3eac4 (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
// functions2.rs
// Make me compile! Scroll down for hints :)

// I AM NOT DONE

fn main() {
    call_me(3);
}

fn call_me(num) {
    for i in 0..num {
        println!("Ring! Call number {}", i + 1);
    }
}




























// Rust requires that all parts of a function's signature have type annotations,
// but `call_me` is missing the type annotation of `num`.