6 lines
85 B
Text
6 lines
85 B
Text
var v = 0
|
|
while (true) {
|
|
v = v + 1
|
|
System.print(v)
|
|
if (v%6 == 0) break
|
|
}
|