Three minutes ago, Robby Findler wrote: > Thanks. > > #lang racket ; A picture > (require 2htdp/image) > (let sierpinski ([n 8]) > (if (zero? n) > (triangle 2 'solid 'red) > (let ([t (sierpinski (- n 1))]) > (freeze (above t (beside t t)))))) > > This is a revision. I don't nkow if it fits, tho. The call to freeze > can be anywhere around the result if that helps at all.
It's the same width, so it should be fine. (You could also indent the `if' my way and get two more characters...) -- ((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/dev