10 lines
164 B
Text
10 lines
164 B
Text
|
|
main =>
|
||
|
|
foreach (I in 1..10)
|
||
|
|
printf("%d", I),
|
||
|
|
if (I mod 5 == 0) then
|
||
|
|
nl
|
||
|
|
else
|
||
|
|
printf(", ")
|
||
|
|
end,
|
||
|
|
end.
|