mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-28 15:43:41 +02:00
17 lines
253 B
ObjectPascal
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.
|
|
|