ethos/tests/if.ethlang
sfja 086bea3e89
All checks were successful
Check / Explore-Gitea-Actions (push) Successful in 46s
add vim line to tests
2026-04-13 09:39:58 +02:00

29 lines
267 B
Rust

// 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);
}
// vim: syntax=rust commentstring=//\ %s