ex33.pp 194 B

1234567891011
  1. Program Example33;
  2. { Program to demonstrate the Insert function. }
  3. Var S : String;
  4. begin
  5. S:='Free Pascal is difficult to use !';
  6. Insert ('NOT ',S,pos('difficult',S));
  7. writeln (s);
  8. end.