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