summaryrefslogtreecommitdiff
path: root/exercises/01_variables/variables2.rs
blob: ce2dd8517735eec9d7980f12edcba65cd1926ff7 (plain)
1
2
3
4
5
6
7
8
fn main() {
    let x;
    if x == 10 {
        println!("x is ten!");
    } else {
        println!("x is not ten!");
    }
}