max

(max number1 number2 ...)

The max function returns the largest number of the numbers given as arguments to the function.

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

Examples

: (max 2 3 1)

3

: (max 2 3.1 1)

3.1000