fpc/tests/tbs/tb0003.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

16 lines
252 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.