Core Function Max

From Sputnik Wiki
Revision as of 12:38, 14 June 2015 by UberFoX (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
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
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox