mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-27 09:33:41 +02:00
11 lines
173 B
ObjectPascal
11 lines
173 B
ObjectPascal
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.
|