mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-10 00:04:14 +01: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. |