Macro that will return the smaller of two values
MIN( value1, value2 )
Returns the smaller of two values
Works with both float and integer parameters.
value1 | input value |
value2 | input value |
Returns the smaller of value1
and value2
.
new Float:n; n = MAX(12.4, -3.14); // -3.14