Mostly technical stuff with some interesting moments of life

Scheme: Trace Functions

1 comment
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.

1 comment :