From: Laurent (laurent.orseau at gmail.com) Date: Sun Jun 27 08:40:50 EDT 2010 |
|
On Sun, Jun 27, 2010 at 14:35, Sam Tobin-Hochstadt <samth at ccs.neu.edu>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? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.racket-lang.org/users/archive/attachments/20100627/5c80bcb1/attachment.html>
Posted on the users mailing list. |
|