INT_ARRAY(Num)
Returns an integer array of size Num
IntegerArray INT_ARRAY(Integer Num)
Num - Integer value greater than zero. If it is not an integer type, it is implicitly converted to an integer type.
Integer array of size Num
> A = INT_ARRAY(5)
> A[0] = 1
> PRINT A
{ 1, 0, 0, 0, 0 }