fpc/tests/test/tutf82.pp
florian 80f6b094d3 + added forgotten $codepage directive
git-svn-id: trunk@429 -
2005-06-16 20:22:08 +00:00

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.