[plt-scheme] Dumb question: Is there a program trace facility in Dr. Scheme?

From: Mike T. Machenry (dskippy at ccs.neu.edu)
Date: Thu Sep 5 13:25:35 EDT 2002

yes there is.

(require
 (lib "trace.ss"))
(define (f x)
  x)
(trace f)
(f 1)
(untrace f)
(f 1)

On Thu, Sep 05, 2002 at 01:24:48PM -0400, John W. Small wrote:
> I'd like to trace a procedure call.
> 
> Thanks!
> 
> John
> 



Posted on the users mailing list.