summaryrefslogtreecommitdiff
path: root/fpcdocs/refex/ex85.pp
blob: 0884c7cb36195a147c6b571d5a2e7bc3cb93195b (plain)
1
2
3
4
5
6
7
8
9
10
11
Program Example85;

{ Program to demonstrate the SetLength function. }

Var S : String;

begin
  FillChar(S[1],100,#32);
  Setlength(S,100);
  Writeln ('"',S,'"');
end.