fpc/docs/refex/ex85.pp
1999-06-04 20:08:10 +00:00

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.