Description
MakeArray creates an array, initializes it with the given array elements and returns it.
Arguments
The given arguments are array elements with which to initialize the array. The number of array elements can be any number between 1 and 1000. All the arguments must be of the same type.
Action
MakeArray creates an array, initializes it with the given array elements and returns it.
Typical use
In Crystal syntax, you can use the square bracket notation for arrays.
Example
Local NumberVar Array x := MakeArray (1, 1000, 10, 100, 10);
Creates and initializes an array x with five Number elements: 1, 1000, 10, 100, 10.