function boot.janet on line 794, column 1 (sort a &opt by) Sort an array in-place. Uses quick-sort and is not a stable sort.
(sort @[5 4 1 3 2]) # -> @[1 2 3 4 5] (sort @[5 4 1 3 2] >) # -> @[5 4 3 2 1]