| Paste number 53660: | (sort) in CL |
| Pasted by: | rindolf |
| When: | 4 years, 1 month ago |
| Share: | Tweet this! | http://paste.lisp.org/+15EK |
| Channel: | #lispcafe |
| Paste contents: |
(let* ((mylist (list 10 5 20 9))
(sorted (sort mylist #'<)))
(format t "mylist is: ~a~%" mylist)
(format t "sorted is: ~a~%" sorted))
; Prints:
; mylist is: (10 20)
; sorted is: (5 9 10 20)
This paste has no annotations.