Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / tests / test / tcpstr6.pp
Size: Mime:
{$CODEPAGE cp1251}
// file encoding is cp1251
type
  Cp866String = type AnsiString(866);
  Cp1251String = type AnsiString(1251);

procedure WriteString(const s: RawByteString);
begin
  Write(StringCodePage(s), ' : ');
  WriteLn(s);
end;

var
  u : UnicodeString;
  c1251: Cp1251String;
  c866: Cp866String;
begin
  c1251 := 'Ïðèâåò';
  WriteString(c1251);
  u := c1251;
  WriteString(u);
  c866 := c1251;
  c866 := c866 + c1251;
  WriteString(c866);
end.