5 lines
72 B
Groovy
5 lines
72 B
Groovy
for(i in (1..10)) {
|
|
print i
|
|
if (i == 10) break
|
|
print ', '
|
|
}
|