S9 LIB  (quicksort procecure^2 list)  ==>  list

Sort lists using the Quicksort algorithm. PROCEDURE^2 is a
binary procedure describing the desired order. The original
list is not changed.

(quicksort <= '(5 3 7 9 1))  ==>  (1 3 5 7 9)
