| Paste number 53660: | (sort) in CL |
| Pasted by: | rindolf |
| 7 months, 2 days ago | |
| #lispcafe | Context in IRC logs | |
| 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.