forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Stats
angerangel edited this page Mar 19, 2013
·
1 revision
STATS /show /profile /timer /evals
Provides status and statistics information about the interpreter.
STATS is a native value.
- /show -- Print formatted results to console
- /profile -- Returns profiler object
- /timer -- High resolution time difference from start
- /evals -- Number of values evaluated by interpreter
#SOURCE
stats: make native! [ [
{Provides status and statistics information about the interpreter.}
/show "Print formatted results to console"
/profile "Returns profiler object"
/timer "High resolution time difference from start"
/evals "Number of values evaluated by interpreter"
] ]