Rebol Programming/trace
USAGE:
TRACE mode /net /function
DESCRIPTION:
Enables and disables evaluation tracing.
TRACE is a native value.
ARGUMENTS
- mode -- (Type: logic)
REFINEMENTS
- /net -- Enable/disable network tracing.
- /function -- Enable/disable function call tracing.
SOURCE CODE
trace: native[
"Enables and disables evaluation tracing."
mode [logic!]
/net "Enable/disable network tracing."
/function "Enable/disable function call tracing."
]