tb0187.pp 318 B

12345678910111213141516
  1. { Old file: tbs0221.pp }
  2. { syntax parsing incompatibilities with tp7 OK 0.99.11 (PFV) }
  3. var
  4. r : double;
  5. c : char;
  6. begin
  7. r:=1.;
  8. c:=^.; { this compile in tp7, c should contain 'n'/#110 }
  9. if c<>#110 then
  10. begin
  11. Writeln('FPC does not support ^. character!');
  12. Halt(1);
  13. end;
  14. end.