GALiRe
GScript command (add to)




Function:
Adds a value to the end of an array. i.e. -
create(@myArray("how","are","you","today")); // it is vital to create the array // before using it
add("friend") to(@myArray); // adds 'friend' to the array
// @myArray now contains ("how","are","you","today","friend")


This does not work outside of GALiRe Script.