RosettaCodeData/Task/Loops-Do-while/Bc/loops-do-while.bc
2017-09-25 22:28:19 +02:00

6 lines
83 B
Text

i = 0
for (;;) {
++i /* increments then prints i */
if (i % 6 == 0) break
}
quit