fpc/docs/refex/ex15.pp
2005-02-14 17:13:06 +00:00

12 lines
168 B
ObjectPascal

Program Example15;
{ Program to demonstrate the Delete function. }
Var
S : String;
begin
S:='This is not easy !';
Delete (S,9,4); { S:='This is easy !' }
end.