mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-30 09:53:39 +02:00
11 lines
181 B
ObjectPascal
11 lines
181 B
ObjectPascal
{$codepage cp866}
|
|
program tcptypedconst3;
|
|
const
|
|
c : Char = '£';//= #163
|
|
begin
|
|
writeln(Ord(c));
|
|
if (Ord(c) <> 163) then begin
|
|
writeln('error');
|
|
Halt(1);
|
|
end;
|
|
end. |