RosettaCodeData/Task/Sort-an-integer-array/LiveCode/sort-an-integer-array.livecode

5 lines
76 B
Text
Raw Normal View History

2023-07-01 11:58:00 -04:00
put "3,2,5,4,1" into X
sort items of X numeric
put X
-- outputs "1,2,3,4,5"