mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-31 10:22:44 +02:00
18 lines
193 B
ObjectPascal
18 lines
193 B
ObjectPascal
{$mode fpc}
|
|
|
|
resourcestring
|
|
s = 'OK';
|
|
|
|
var t:ansistring;
|
|
|
|
begin
|
|
t:=s;
|
|
if t<>'OK' then
|
|
begin
|
|
writeln('Resourcestring error!');
|
|
halt(1);
|
|
end
|
|
else
|
|
writeln(s);
|
|
end.
|