[racket-users] Single Stepping?

2020-03-27 Thread Nicholas Papadonis
Is there documentation on single stepping in Racket? I.e. setting a breakpoint and single stepping evaluation of expressions from there? I found: https://docs.racket-lang.org/stepper/index.html however, the documentation is lacking this info. Thanks! -- You received this message because you

Re: [racket-users] trace facility in Racket?

2020-03-21 Thread Nicholas Papadonis
;> On Mar 21, 2020, at 8:43 AM, Nicholas Papadonis >> wrote: >> >> I was successful with MIT Scheme placing (trace proc) inside the closure of >> this code. Placing (trace proc) outside the closure did not have any effect. >> >> This is the question I

Re: [racket-users] trace facility in Racket?

2020-03-21 Thread Nicholas Papadonis
I was successful with MIT Scheme placing (trace proc) inside the closure of this code. Placing (trace proc) outside the closure did not have any effect. This is the question I'm asking. Is it possible to trace without modifying the closure? I ask due to forward thinking about software engineeri