tb0003.pp 253 B

12345678910111213141516
  1. { Old file: tbs0004.pp }
  2. { tests the continue instruction in the for loop OK 0.9.2 }
  3. var
  4. i : longint;
  5. begin
  6. for i:=1 to 100 do
  7. begin
  8. writeln('Hello');
  9. continue;
  10. writeln('ohh');
  11. Halt(1);
  12. end;
  13. end.