tb0333.pp 281 B

123456789101112
  1. { Old file: tbs0001.pp }
  2. { tests a bugs in the .ascii output (#0 and too long) OK 0.9.2 }
  3. program smalltest;
  4. const
  5. teststr : string = ' '#9#255#0;
  6. begin
  7. writeln(teststr);
  8. teststr := 'gaga';
  9. writeln(teststr);
  10. if teststr<>'gaga' then halt(1);
  11. end.