min( param1, param2 )
Parameters
| Type | Description | |
| param1 | numeric | first value |
| param2 | numeric | second value |
_result
Set to a numeric value that is the smaller of param1 and param2.
Descriptions
Sets _result to the smaller of param1 and param2. Negative numbers far from zero are considered smaller than negative numbers near to zero. Since min is a command it can not be used in an expression and must appear on a line by itself. After calling min, the _result variable may be used in an expression.
See Also