summaryrefslogtreecommitdiff
path: root/exercises/22_clippy/clippy2.rs
blob: 37ac089ea36dd5b2da762b339bb8e60ba3e5964c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// clippy2.rs
// 
// Execute `rustlings hint clippy2` or use the `hint` watch subcommand for a
// hint.

fn main() {
    let mut res = 42;
    let option = Some(12);
    for x in option {
        res += x;
    }
    println!("{}", res);
}