ethos/tests/if.ethlang
sfja 4f9ea23d84
All checks were successful
Check / Explore-Gitea-Actions (push) Successful in 8s
add strings
2026-03-17 20:24:15 +01:00

26 lines
224 B
Plaintext

// expect: 2
// expect: 5
fn main()
{
let a = 1;
if true {
a = 2;
}
if false {
a = 3;
}
print(a);
if false {
a = 4;
} else {
a = 5;
}
print(a);
}