Returns the smaller of two integer values.
Examples
REM Simple comparison
PRINT MIN(10, 5)
REM Clamp a value to a maximum
VALUE = 120
VALUE = MIN(VALUE, 100)
PRINT VALUE
REM Use in an expression
A = 42
B = 17
PRINT "Smallest is "; MIN(A, B)
Notes
- Both parameters must be integer expressions.
- Returns whichever value is lower.
- Commonly used for clamping values or enforcing limits.
- For real values, use MINR
See also: MAX ยท ABS