Conditional: if



examples/booleans/condition-if/src/main.rs
fn main() {
    let x = 23;
    let y = 32;
    if x < y {
        println!("x is smaller than y");
    }
}

x is smaller than y