array
Purpose
Create an array of the integer type
Description
Defines a table of variables Can be used within a structure definition or standalone. Default array type is integer.
Syntax
struct name
array field1
...
typen fieldn
endStruct
Arguments
name name of the structure
field1 name of the first field
fieldn name of the last field
typen type of the last field
Example
// Define a property of a structure type as an array
struct person
string name
int age
float height
array interests[3]
endStruct
// Define an integer array of 10 elements
array data[10]
Associated Commands