Max(
x
,
y
)
Returns the greater of x and y.
Example
=
Block
{
ShowMax
(3, 2);
ShowMax
(4, 7);
ShowMax
(
-
5,
-
18);
};
The greater of 3 and 2 is 3.
The greater of 4 and 7 is 7.
The greater of -5 and -18 is -5.