Functions Documentation
View Function Edit Function
Name min
Syntax (min expression [number]^1)
Argument List expression: A list or a number to find the least of.
number: One of the numbers that you want to find the least of.
Returns number: Returns the least of the passed in numbers.
Category math, 0.99
Description Finds and returns the least of the passed in numbers. If the first argument is a list of numbers that will be checked but no other arguments will be checked. Otherwise it will go through all the arguments.
Example
(min '(5 4 3 2 1))
Will return a 1.
 (min 34 54 784 4 45) 

Will return a 4.
Comment Nice quick function to find the lowest number from a list.