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

  1. Program Example15;
  2.  
  3. { Program to demonstrate the Delete function. }
  4.  
  5. Var 
  6.   S : String;
  7.  
  8. begin
  9.   S:='This is not easy !';
  10.   Delete (S,9,4); { S:='This is easy !' }
  11. end.
  12.