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