[racket] interactive.rkt

From: Greg Hendershott (greghendershott at gmail.com)
Date: Wed Oct 13 21:33:01 EDT 2010

Every time I read your code I learn more. And learn how much more I
have left to learn. :)

I'm curious why does time** start by doing 3 (collect-garbage) calls in a row?

(define (time** thunk times)
...
  (collect-garbage)
  (collect-garbage)
  (collect-garbage)


On Wed, Oct 13, 2010 at 9:20 PM, Eli Barzilay <eli at barzilay.org> wrote:
> I have revised my interactive hack -- it's now fully racketized, and
> has more features than before:
>
>  http://barzilay.org/misc/interactive.rkt
>
> This is mostly useful for people who do a lot of developement on a
> command-line racket.
>
> --
>          ((lambda (x) (x x)) (lambda (x) (x x)))          Eli Barzilay:
>                    http://barzilay.org/                   Maze is Life!
> _________________________________________________
>  For list-related administrative tasks:
>  http://lists.racket-lang.org/listinfo/users
>


Posted on the users mailing list.