fn main() -> i32 {
let foo = 8;
let bar: bool = foo * -3;
match foo + bar < 10 {
true => 123,
false => 456,
}