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

12 lines
169 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.