summaryrefslogtreecommitdiff
path: root/fpcdocs/sysutex/ex62.pp
blob: fe69fec23cdde4597f2043eca4a1e78b0906ed91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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.