MIN(A, B)
Returns the minimum value of A and B
Float MIN(Float A, Float B)
Integer MIN(Integer A, Integer B)
A - Integer or float value
B - Integer or float value
Minimum value of A and B
> PRINT MIN(1, 2)
1
> PRINT MIN(1.0, 2.0)
1.000000