fn main() {
    let n = 5;
    let a = if n >= 5 {
        10 as u8
    } else {
        100
    };
    println!("{}",a);
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: