RosettaCodeData/Task/Loops-Do-while/Bc/loops-do-while.bc

7 lines
83 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
i = 0
for (;;) {
++i /* increments then prints i */
if (i % 6 == 0) break
}
quit