ex10.pp 169 B

123456789
  1. Program Example10;
  2. { Program to demonstrate the Concat function. }
  3. Var
  4. S : String;
  5. begin
  6. S:=Concat('This can be done',' Easier ','with the + operator !');
  7. end.