summaryrefslogtreecommitdiff
path: root/fpcdocs/refex/ex10.pp
blob: 580f26b3c377a2d0561bc616bdf73df80d9f19e8 (plain)
1
2
3
4
5
6
7
8
9
Program Example10;

{ Program to demonstrate the Concat function. }
Var
  S : String;

begin
  S:=Concat('This can be done',' Easier ','with the + operator !');
end.