wasm-lang/test/t1

9 lines
144 B
Text
Raw Permalink Normal View History

2023-10-03 02:03:58 +00:00
fn main() -> i32 {
let foo = 8;
2023-10-22 20:20:04 +00:00
let bar: bool = foo * -3;
2023-10-03 02:03:58 +00:00
match foo + bar < 10 {
true => 123,
false => 456,
}
}