mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-26 12:03:45 +02:00
15 lines
208 B
ObjectPascal
15 lines
208 B
ObjectPascal
var
|
|
count : byte;
|
|
test : longint;
|
|
begin
|
|
test:=0;
|
|
for count:=1 to 127 do
|
|
begin
|
|
inc(test);
|
|
writeln(count,'. loop');
|
|
if test>127 then
|
|
Halt(1);
|
|
end;
|
|
end.
|
|
|