There are many ways to sort lists. Some are more complicated but quite fast, others are simpler, and a bit slower. The easiest one that I can think of is to run through the list and search for the biggest number, and add it to a new list (the "sorted" list), deleting it from the original list. Continue this for as long as the original list was.
set r to (length of list) repeat (r) 1. find biggest number 2. delete above number from first list 3. add above number to second list end
Offline

Try that. As it says in the comments, it only works if the numbers are integers, and also if you know the largest number. You can just set the largest number to a very large one if you don't know the largest number, like 9999999999999999999999 or something.
Offline
Hey Validyk; i noticed you posted another topic like this. In order to help keep the forums organized, i'll close this one, and keep all discussion to the other.
Offline