RosettaCodeData/Task/Sort-an-integer-array/PicoLisp/sort-an-integer-array.l
2023-07-01 13:44:08 -04:00

2 lines
34 B
Common Lisp

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