max
builtin-function
(max &rest values)
Returns the largest value.
make-html > (max 1 2 4 1 3) it: 4 make-html > (reduce max '(1 2 4 1 3)) it: 4