RosettaCodeData/Task/Flow-control-structures/Pascal/flow-control-structures-1.p...

11 lines
86 B
Plaintext

label
jumpto;
begin
...
jumpto:
some statement;
...
goto jumpto;
...
end;