Rebol Programming/probe

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

USAGE:

[edit | edit source]
PROBE value 

DESCRIPTION:

[edit | edit source]

Prints a molded, unevaluated value and returns the same value.

PROBE is a function value.

ARGUMENTS:

[edit | edit source]
  • value -- (Type: any)

SOURCE CODE

[edit | edit source]
probe: func [
    {Prints a molded, unevaluated value and returns the same value.} 
    value
][
    print mold :value :value
]