7 lines
99 B
Text
7 lines
99 B
Text
var i : Integer;
|
|
|
|
for i := 1 to 10 do begin
|
|
Print(i);
|
|
if i < 10 then
|
|
Print(', ');
|
|
end;
|