Rebol Programming/max
USAGE:
MAX value1 value2
DESCRIPTION:
Returns the greater of the two values.
MAX is an action value.
ARGUMENTS:
- value1 -- (Type: number pair char money date time tuple series)
- value2 -- (Type: number pair char money date time tuple series)
SOURCE CODE
max: native[
"Returns the greater of the two values."
value1 [number! pair! char! money! date! time! tuple! series!]
value2 [number! pair! char! money! date! time! tuple! series!]
]