q/tests/programs/loop-infinite.q
2025-02-19 17:52:15 +01:00

11 lines
No EOL
69 B
Text

main() {
n := 10
loop {
if n == 0 {
return
}
n -= 1
}
}