I found this really useful command in Scheme which helps to trace the function calls, while playing around it.
Say you have define a function named func. Now if you want to trace how it works when you invoke it, just type this.
> (trace func)
The next time you invoke func you will see the trace of function calls.
Helpful, thanx.
ReplyDelete