REBOL Programming/max

< REBOL Programming

USAGE:

MAX value1 value2 

DESCRIPTION:

Returns the greater of the two values.

MAX is an action value.

ARGUMENTS:

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!]
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.