Rebol Programming/max

USAGE:

edit
MAX value1 value2 

DESCRIPTION:

edit

Returns the greater of the two values.

MAX is an action value.

ARGUMENTS:

edit
  • value1 -- (Type: number pair char money date time tuple series)
  • value2 -- (Type: number pair char money date time tuple series)

SOURCE CODE

edit
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!]
]