fpc/tests/tbs/tb0003.pp
2000-11-30 22:38:14 +00:00

17 lines
253 B
ObjectPascal

{ Old file: tbs0004.pp }
{ tests the continue instruction in the for loop OK 0.9.2 }
var
i : longint;
begin
for i:=1 to 100 do
begin
writeln('Hello');
continue;
writeln('ohh');
Halt(1);
end;
end.