tb0004.pp 221 B

12345678910111213141516
  1. { Old file: tbs0005.pp }
  2. { tests the if 1=1 then ... bugs OK 0.9.2 }
  3. uses
  4. erroru;
  5. begin
  6. if 1=1 then
  7. begin
  8. Writeln('OK');
  9. end;
  10. if 1<>1 then
  11. begin
  12. Error;
  13. end;
  14. end.