tb0256.pp 300 B

12345678910111213141516
  1. { Old file: tbs0296.pp }
  2. { exit(string) does not work (web form bugs 613) OK 0.99.13 (PM) }
  3. function test : string;
  4. begin
  5. test:='This should not be printed';
  6. exit('this should be printed');
  7. end;
  8. begin
  9. writeln(test);
  10. if test<>'this should be printed' then
  11. Halt(1);
  12. end.