RosettaCodeData/Task/Sort-an-integer-array/LiveCode/sort-an-integer-array.livecode
2023-07-01 11:58:00 -04:00

4 lines
76 B
Text

put "3,2,5,4,1" into X
sort items of X numeric
put X
-- outputs "1,2,3,4,5"