On Sun, Jun 27, 2010 at 14:35, Sam Tobin-Hochstadt <[email protected]>wrote:

> #lang racket
>
> (require racket/trace)
>
> (define (f x)
>  (if (zero? x) "done" (f (sub1 x))))
>
> (trace f)
>
> (f 100)
>


Is it possible to add this example to the docs?
_________________________________________________
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/users

Reply via email to