INITARRAYARRAY StatementWindows/Unix

Initializes an array with the corresponding values.  (POSSIBLE BUG,use MEMSET  instead)

Syntax: INITARRAY(Array, value [, ...])
DIM A(1 TO 100) AS INTEGER
INITARRAY(A, 55, 234, 45, 99)

Details:
Equivalently:
DEFINT A(1 TO 100) = {55, 234, 45, 99}

Initializing arrays as opposed to looping through each one saves a bit of time.