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