summaryrefslogtreecommitdiff
path: root/fpcdocs/refex/ex76.pp
blob: 0c6748331fd19b342f7b44e678fadf1af9962087 (plain)
1
2
3
4
5
6
7
8
9
10
Program Example76;

{ Program to demonstrate the FillWord function. }

Var W : Array[1..100] of Word;

begin
  { Quick initialization of array W }
  FillWord(W,100,0);
end.