Rebol Programming/show

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

USAGE:

[edit | edit source]
SHOW face 

DESCRIPTION:

[edit | edit source]

Display a face or block of faces.

SHOW is a native value.

ARGUMENTS

[edit | edit source]
  • face -- (Type: object block)

SOURCE CODE

[edit | edit source]
show: native[
    "Display a face or block of faces." 
    face [object! block!]
]