mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-26 12:03:45 +02:00
14 lines
218 B
ObjectPascal
14 lines
218 B
ObjectPascal
|
|
var
|
|
r : double;
|
|
c : char;
|
|
begin
|
|
r:=1.;
|
|
c:=^.; { this compile in tp7, c should contain 'n'/#110 }
|
|
if c<>#110 then
|
|
begin
|
|
Writeln('FPC does not support ^. character!');
|
|
Halt(1);
|
|
end;
|
|
end.
|