2
0

ex62.pp 197 B

12345678910111213
  1. Program Example62;
  2. { This program demonstrates the AppendStr function }
  3. Uses sysutils;
  4. Var S : AnsiString;
  5. Begin
  6. S:='This is an ';
  7. AppendStr(S,'AnsiString');
  8. Writeln ('S = "',S,'"');
  9. End.