RosettaCodeData/Task/Sort-an-integer-array/Common-Lisp/sort-an-integer-array.lisp
2023-07-01 13:44:08 -04:00

2 lines
60 B
Common Lisp

CL-USER> (sort #(9 -2 1 2 8 0 1 2) #'<)
#(-2 0 1 1 2 2 8 9)