RosettaCodeData/Task/Sort-an-integer-array/PicoLisp/sort-an-integer-array.l
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

2 lines
34 B
Common Lisp

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