Rebol Programming/in

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:

[edit | edit source]
IN object word 

DESCRIPTION:

[edit | edit source]

Returns the word in the object's context.

IN is a native value.

ARGUMENTS:

[edit | edit source]
  • object -- (Type: object port)
  • word -- (Type: any-word)

SOURCE CODE

[edit | edit source]
in: native[
    "Returns the word in the object's context." 
    object [object! port!] 
    word [any-word!]
]