Binding Values Must Be The Same
This will break via: https://doc.rust-lang.org/book/ch03-05-control-flow.html
because the values from the two arms of the if
aren't the
same type. This will throw an error that we'll look at
on the next page.
SOURCE CODE
fn main() {
let alfa = if 3 <= 4 {
0
} else {
false
};
println!("alfa is {}", alfa);
}