summaryrefslogtreecommitdiff
path: root/old_curriculum/variables/variables1.rs
blob: 1cdd27027114c25e3e0ad66ff1de701e899b3c69 (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
// variables1.rs
// Make me compile! Scroll down for hints :)

fn main() {
    x = 5;
    println!("x has the value {}", x);
}

































// Hint: The declaration on line 5 is missing a keyword that is needed in Rust
// to create a new variable binding.