Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Assign result of conditional to variable

fn main() {
    let x = 3;
    let y = 4;

    let z = x < y;
    println!("{}", z);

    let z = x > y;
    println!("{}", z);
}
true
false