MIN( )
MIN( expr1, expr2 )
Description:
This function returns the smaller of two numeric values.
Usage:
input "Enter a number?"; a input "Enter another number?"; b print "The smaller value is "; min(a, b)
See also: MAX( )