Array – AMT Datasouth PAL User Manual
Page 38
Advertising

array
32
array
Description
Creates an array entirely consisting of null objects.
Usage
ElementsInt
array
NullArray
ElementsInt
Integer. Number of elements to include within array.
NullArray
Array. Array containing ElementsInt null objects.
Comments
The array and [...] operators perform similar functions. However, the [...] operators require the
programmer to supply initialization data for a new array. The array operator does not require in-
itialization data. The array operator automatically initializes the array with null objects. This
provides a simplified means for programmers to create arrays which will receive their data at a
later time.
Advertising