25 Debugging
(require unstable/debug) |
This library is unstable; compatibility will not be maintained. See Unstable for more information.
Produce debugging output for the application of f, including the values of args.
Examples: | ||||||
> (debug (+ 3 4 (* 5 6))) | ||||||
| ||||||
37 | ||||||
> (debug + 1 2 3) | ||||||
| ||||||
6 |
(debugm f args ...) |
Produce debugging output for the application of f, but does
not parse or print args. Suitable for use debugging macros.