RosettaCodeData/Task/Jump-anywhere/Delphi/jump-anywhere-2.delphi
2023-07-01 13:44:08 -04:00

18 lines
201 B
Text

label
inloop, outloop;
begin
x := 2;
if x > 0 then
goto inloop;
for x := -10 to 10 do
begin
inloop:
Writeln(x);
if x = 8 then
goto outloop;
end;
outloop:
readln;
end.