mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
7 lines
77 B
ObjectPascal
7 lines
77 B
ObjectPascal
var x,y:integer;
|
|
begin
|
|
|
|
y:=5;
|
|
for x:=0 to 10 do if x<y then writeln(x);
|
|
end.
|