RosettaCodeData/Task/Sierpinski-triangle-Graphical/Racket/sierpinski-triangle-graphical-2.rkt
Ingy döt Net 776bba907c Sync
2013-10-27 22:24:23 +00:00

5 lines
237 B
Racket

;; the following will show the graphics if run in DrRacket
(sierpinski 8)
;; or use this to dump the image into a file, shown on the right
(require file/convertible)
(display-to-file (convert (sierpinski 8) 'png-bytes) "sierpinski.png")