BOOL_ARRAY(Num)
Returns a boolean array of size Num
BooleanArray BOOL_ARRAY(Integer Num)
Num - Integer value greater than zero. If it is not an integer type, it is implicitly converted to an integer type.
Boolean array of size Num
> A = BOOL_ARRAY(3)
> A[0] = TRUE
> PRINT A
{ TRUE, FALSE, FALSE }