min

(min number1 number2 ...)

The min function returns the smallest number of the numbers given as arguments to the function.

The function returns a real number if any one of the given arguments is real. It returns an integer if all arguments are integer.

Examples

: (min 2 3 1)

1

: (min 2 3.1 1)

1.0000