tbs0221.pp 218 B

12345678910111213
  1. var
  2. r : double;
  3. c : char;
  4. begin
  5. r:=1.;
  6. c:=^.; { this compile in tp7, c should contain 'n'/#110 }
  7. if c<>#110 then
  8. begin
  9. Writeln('FPC does not support ^. character!');
  10. Halt(1);
  11. end;
  12. end.