tbs0296.pp 200 B

12345678910111213
  1. function test : string;
  2. begin
  3. test:='This should not be printed';
  4. exit('this should be printed');
  5. end;
  6. begin
  7. writeln(test);
  8. if test<>'this should be printed' then
  9. Halt(1);
  10. end.