ethos/tests/if.ethlang
2026-03-11 14:54:54 +01:00

13 lines
98 B
Plaintext

// expect: 2
fn main()
{
let a = 1;
if true {
a = 2;
}
print_int(a);
}