6 lines
75 B
Groovy
6 lines
75 B
Groovy
def i = 0
|
|
while (true) {
|
|
i++
|
|
println i
|
|
if (i % 6 == 0) break
|
|
}
|