Language:
Русский
English
array (reserved word)
Defines an array type.
Syntax
array [index-type] of element-type
Remarks
Several index types are allowed if they are separated by commas.
The element type can be any type, but the index type must be an ordinal type.
Example
type
IntList = array[1..100] of Integer;
CharData = array['A'..'Z'] of Byte;
Matrix = array[0..9, 0..9] of real;