mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-26 12:03:45 +02:00
14 lines
154 B
ObjectPascal
14 lines
154 B
ObjectPascal
var
|
|
i : longint;
|
|
|
|
begin
|
|
for i:=1 to 100 do
|
|
begin
|
|
writeln('Hello');
|
|
continue;
|
|
writeln('ohh');
|
|
Halt(1);
|
|
end;
|
|
end.
|
|
|