mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 13:29:28 +02:00
13 lines
197 B
ObjectPascal
13 lines
197 B
ObjectPascal
Program Example62;
|
|
|
|
{ This program demonstrates the AppendStr function }
|
|
|
|
Uses sysutils;
|
|
|
|
Var S : AnsiString;
|
|
|
|
Begin
|
|
S:='This is an ';
|
|
AppendStr(S,'AnsiString');
|
|
Writeln ('S = "',S,'"');
|
|
End. |