10 lines
146 B
Text
10 lines
146 B
Text
for (i in 1..10) {
|
|
System.write(i)
|
|
if (i%5 == 0) {
|
|
System.print()
|
|
continue
|
|
}
|
|
System.write(", ")
|
|
}
|
|
|
|
System.print()
|