Rebol Programming/component?

USAGE:

COMPONENT? name 

DESCRIPTION:

Returns specific REBOL component info if enabled.

COMPONENT? is a function value.

ARGUMENTS

  • name -- (Type: word)

SOURCE CODE

component?: func [
    "Returns specific REBOL component info if enabled." 
    name [word!]
][
    find system/components name
]