.he 'NEWARRAY''Page %'
.fo 'Steven Hardy''January 78'
NEWARRAY	NEWARRAY can be used to create full size arrays the components
of which can be used to store any value.  NEWARRAY could be defined
as:
 	: VARS NEWARRAY;
 	: NEWANYARRAY(%INIT,SUBSCR%) -> NEWARRAY;
.br
Thus NEWARRAY([1 10 1 10]) creates a ten by ten array filled with zeroes,
NEWARRAY([10 20 10 20]) creates an eleven by eleven array filled with zeroes,
and
 	: NEWARRAY([20 30 -5 5],LAMBDA (X,Y); X + Y END)
.br
creates an eleven by eleven array the components of which are filled with
the sum of their subscripts.
