mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 15:49:04 +02:00
12 lines
170 B
ObjectPascal
12 lines
170 B
ObjectPascal
{$codepage utf8}
|
|
var
|
|
w : widestring;
|
|
begin
|
|
w:='äüö';
|
|
if (ord(w[1])<>$e4) or
|
|
(ord(w[2])<>$fc) or
|
|
(ord(w[3])<>$f6) then
|
|
halt(1);
|
|
writeln('ok');
|
|
end.
|