fpc/docs/refex/ex33.pp
1998-03-25 11:26:49 +00:00

12 lines
194 B
ObjectPascal

Program Example33;
{ Program to demonstrate the Insert function. }
Var S : String;
begin
S:='Free Pascal is difficult to use !';
Insert ('NOT ',S,pos('difficult',S));
writeln (s);
end.