fpc/tests/tbs0007.pp
1998-10-28 10:06:25 +00:00

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.