Core Function Min
From Sputnik Wiki
Min( <expression>, <expression2> )
Contents |
Description
Find the lesser 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
You can add infinitely more expressions and compare them all to find the min.
Example
$y = min(50, 100); println( "Value is: $y " ); //prints 50
Example of comparing many values
$y = Min(8, 2, 7, 3, 1, 4, 5) println( "Value is: $y " ); //prints 1