RosettaCodeData/Task/Sort-an-integer-array/Common-Lisp/sort-an-integer-array.lisp
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07: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)