RosettaCodeData/Task/Sort-an-integer-array/Lingo/sort-an-integer-array.lingo

5 lines
44 B
Plaintext

l = [7, 4, 23]
l.sort()
put l
-- [4, 7, 23]