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