Rebol Programming/or
USAGE:
value1 OR value2
DESCRIPTION:
Returns the first value ORed with the second.
OR is an op value.
ARGUMENTS:
- value1 -- (Type: logic number char tuple binary string image)
 - value2 -- (Type: logic number char tuple binary string image)
 
SOURCE CODE
or: native[
    "Returns the first value ORed with the second." 
    value1 [logic! number! char! tuple! binary! string! image!] 
    value2 [logic! number! char! tuple! binary! string! image!]
]