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