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