< Rebol Programming
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
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.