order array in decimal ascending order
I have an array (5 longs in length) and I would like to arrange the values of the array in ascending order. Is there an easy way to do that? I would assume that some recursive function could do this, does someone already have something like this written?

Comments
for i from 0 to ArraySize-2 for j from i+1 to ArraySize-1 if array[noparse][[/noparse] i ] > array[noparse][[/noparse] j ] temp := array[noparse][[/noparse] i ] array[noparse][[/noparse] i ] := array[noparse][[/noparse] j ] array[noparse][[/noparse] j ] := temp