GALiRe
GScript command (sort by)




Function:
Sorts an array either numerically or alphabetically. i.e. -
create(@myArray("great","fun",15,3)); // it is vital to create the array object // before using it
sort(@myArray) by ("letters"); // sorts alphabetically
sort(@myArray) by ("numbers"); // sorts numerically
sort(@myArray); // sorts alphabetically


This does not work outside of GALiRe Script.