9 lines
125 B
Text
9 lines
125 B
Text
n := 10;
|
|
for i in [1 .. n] do
|
|
Print(i);
|
|
if i < n then
|
|
Print(", ");
|
|
else
|
|
Print("\n");
|
|
fi;
|
|
od;
|