mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-02 04:13:43 +02:00
12 lines
169 B
ObjectPascal
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.
|