summaryrefslogtreecommitdiff
path: root/ex6.rs
blob: 33e589d47cb883e084fc766abadfc888f2ed081b (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
46
47
// ex6.rs
// Make me compile! Scroll down for hints :)

fn main() {
    let robot_name = Some(String::from("Bors"));

    match robot_name {
        Some(name) => println!("Found a name: {}", name),
        None => (),
    }

    println!("robot_name is: {:?}", robot_name);
}































// Hint: The following two statements are equivalent:
// let x = &y;
// let ref x = y;