Core Function Min
From Sputnik Wiki
Min( <expression>, <expression2> )
Contents |
Description
Find the lowest number and return it
Parameters
expression
Any valid numeric expression.
expression2
Any valid numeric expression.
Return Value
Compares 2 numbers and returns the lowest number.
Remarks
None.
Example
$y = min(50, 100); println( "Value is: $y " ); //prints 50