RosettaCodeData/Task/Sort-an-integer-array/PicoLisp/sort-an-integer-array.l

3 lines
34 B
Common Lisp

(sort (2 4 3 1 2))
-> (1 2 2 3 4)