4 lines
94 B
Text
4 lines
94 B
Text
1.to 10 do { i : INTEGER;
|
|
i.print;
|
|
(i % 5 = 0).if { '\n'.print; } else { ','.print; };
|
|
};
|