Repository URL to install this package:
Version:
3.0.0 ▾
|
program concatenate_resourestrings_delphiunicode;
{$mode delphiunicode}
{$codepage cp1250}
{$ifdef unix}
uses
cwstring;
{$endif}
resourcestring
res2 = 'žlu�ouèký ' + 'koníèek';
type
tstr1250 = type ansistring(1250);
var
str1250: tstr1250;
begin
str1250 := 'žlu�ouèký ' + 'koníèek';
if res2<>str1250 then
halt(1);
end.