Core Function Max
From Sputnik Wiki
Max( <expression>, <expression2> )
Contents |
Description
Find the greater number and return it
Parameters
expression
Any valid numeric expression.
expression2
Any valid numeric expression.
Return Value
Compares 2 numbers and returns the greater number.
Remarks
You can add infinitely more expressions and compare them all to find the max.
Example
$y = max(50, 100); println( "Value is: $y " ); //prints 100
Example of comparing many values
$y = Max(1, 2, 7, 3, 4, 5) println( "Value is: $y " ); //prints 7