Returns the largest of the given values.
Accepts any number of arguments.
max(5) → 5 max(3, 1, 2) → 3 max(10, 20, 5, 15) → 20