Rebol Programming/probe
USAGE:
PROBE value
DESCRIPTION:
Prints a molded, unevaluated value and returns the same value.
PROBE is a function value.
ARGUMENTS:
- value -- (Type: any)
SOURCE CODE
probe: func [
{Prints a molded, unevaluated value and returns the same value.}
value
][
print mold :value :value
]