An ARRAY
is a table containing elements of a single type.
The syntax
is as follows: ARRAY [<limits>] OF <Type>
Example:
ARRAY [1..2] OF BOOL
is a one-dimensional
table with two elements of type BOOL
.
ARRAY [1..10, 1..20] OF INT
is a two-dimensional table
with 10x20 elements of type INT
.