mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 23:09:31 +02:00
8 lines
84 B
ObjectPascal
8 lines
84 B
ObjectPascal
program fordemo;
|
|
|
|
var i : integer;
|
|
|
|
begin
|
|
for I:=0 to 100 do
|
|
Writeln(i);
|
|
end. |