sort-by
builtin-function
(sort-by key seq)
(sort-by key comparer seq)
Sorts seq. The function key procedure the values to compare.
The default comparer is the inbuilt function compare.
make-html > (sort-by length '("hello" "goodbye" "doei" "farewell"))
it: ("doei" "hello" "goodbye" "farewell")