fpc/tests/tbs0007.pp
1999-05-17 13:58:01 +00:00

18 lines
222 B
ObjectPascal

uses
erroru;
var
count : byte;
test : longint;
begin
test:=0;
for count:=1 to 127 do
begin
inc(test);
writeln(count,'. loop');
if test>127 then
Error;
end;
end.