Re: [racket] Stepper and application in BSL

2010-08-29 Thread John Clements
On Aug 29, 2010, at 7:11 PM, Justin Zamora wrote: > I put the following in my definitions window (Beginning Student Language). > > (define (f x) > (+ x 1)) > > (+ (f 3) 1) > > When I open the Stepper, (f 3) is highlighted in green, as expected. > If I click "Step >", the expression changes to

[racket] Stepper and application in BSL

2010-08-29 Thread Justin Zamora
I put the following in my definitions window (Beginning Student Language). (define (f x) (+ x 1)) (+ (f 3) 1) When I open the Stepper, (f 3) is highlighted in green, as expected. If I click "Step >", the expression changes to (+ (+ 3 1) 1), as expected (it stepped into the function). However,