home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / refex / ex10.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  169 b   |  10 lines

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