Hello, Andy Wingo <wi...@pobox.com> writes:
> (sort '((a . 1) (b . -2) (c . 3)) < cdr) > => ((b . -2) (a . 1) (c . 3)) FWIW I find: (sort '((a . 1) (b . -2) (c . 3)) (lambda (x y) (< (cdr x) (cdr y)))) more in the spirit of not “piling feature on top of feature”. Thanks, Ludo’.