Action
Returns the smaller of two numbers.
Syntax
nSmaller = Min (n1, n2)
Variable
|
Description
|
nSmaller
|
The smaller number. NUMBER.
|
n1
|
The first number to compare. NUMBER.
|
n2
|
The second number to compare. NUMBER.
|
Notes
Min compares two numbers and returns whichever of them is
smaller.
Example
Print (Min (69.3, 80)) // prints: 69.3