GALiRe
GScript array




Function:
Declares an array to be used within GALiRe Script. i.e. -
create(@myArray); // it is vital to create the array before using it
@myArray[0]="Billy";
@myArray[1]="Sally";

OR

create(@myArray("Billy","Sally")); // @myArray[0] equals Billy and [1] = Sally


This declares the array @myArray to represent multiple values for the rest of the GScript session. This does not work outside of GALiRe Script.