Rebol Programming/get-modes
USAGE:
GET-MODES target modes
DESCRIPTION:
Returns mode settings for a port.
GET-MODES is a native value.
ARGUMENTS
- target -- (Type: file url block port)
 - modes -- (Type: word block)
 
SOURCE CODE
get-modes: native[
    "Returns mode settings for a port." 
    target [file! url! block! port!] 
    modes [word! block!]
]