akrnmd of CE
6/1/2018 - 6:43 AM

Sort The List. #SenseTalk

Sort The List. #SenseTalk

put (5,4,2,3,1) into MyList
log MyList

sort descending MyList
log MyList --5,4,3,2,1

sort ascending MyList
log MyList --1,2,3,4,5