ethos/tests/loop.ethlang
sfja a42917b485
All checks were successful
Check / Explore-Gitea-Actions (push) Successful in 8s
add debug_print
2026-03-17 18:55:54 +01:00

23 lines
236 B
Plaintext

// expect: 3
// expect: 8
fn main()
{
let a = 0;
while a < 3 {
a = a + 1;
}
debug_print(a);
while a < 10 {
if a >= 8 {
break;
}
a = a + 1;
}
debug_print(a);
}