mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-02 14:53:59 +02:00
12 lines
169 B
ObjectPascal
12 lines
169 B
ObjectPascal
Program Example85;
|
|
|
|
{ Program to demonstrate the SetLength function. }
|
|
|
|
Var S : String;
|
|
|
|
begin
|
|
FillChar(S[1],100,#32);
|
|
Setlength(S,100);
|
|
Writeln ('"',S,'"');
|
|
end.
|