You can sort elements in ascending order with sort: (sort [3 1 2]) ; => (1 2 3) If your sorting needs are more complicated, you can use sort-by, ...
確定! 回上一頁