5 lines
81 B
Text
5 lines
81 B
Text
for .i of 10 {
|
|
write .i
|
|
if .i div 5 { writeln(); next }
|
|
write ", "
|
|
}
|