S9 LIB  (range list)  ==>  list

        (load-from-library "range.scm")

Return a list containing the minimal and maximal value of a set.
(- (cadr (range set)) (car (range set))) is the statistical range
of a set of samples.

(range '(1 2 3 4 5))  ==>  (1 5)
