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