[racket-dev] internal-definition parsing

2010-07-07 Thread Matthew Flatt
Short version: I'm planning to change internal-definition expansion (anywhere that says `body ...' in the Racket documentation) to allow expressions to mingle with definitions. For example, (let () (define (f) x) (displayln f) (define x 1) (list f x)) would be allowed; the

Re: [racket-dev] proposal: `data' collection

2010-07-07 Thread Petey Aldous
That would be interesting and it would not be terribly difficult to instrument setup-plt to do it. I can't promise to have any time in the lab between now and the beginning of my time at the University of Utah, so if you'd like it done anytime soon, I won't be of much help. - Petey

Re: [racket-dev] internal-definition parsing

2010-07-07 Thread Eli Barzilay
On Jul 7, Matthew Flatt wrote: Short version: I'm planning to change internal-definition expansion (anywhere that says `body ...' in the Racket documentation) to allow expressions to mingle with definitions. For example, [...] Nice! On Jul 7, Matthias Felleisen wrote: 4. I am