racket/collects/tests/mzscheme/embed-me7.ss
2008-02-23 09:42:03 +00:00

16 lines
272 B
Scheme

(module embed-me7 mzscheme
(require plot
mred
mzlib/class)
(define img (plot (line (lambda (x) x))))
(define e (new text%))
(send e insert img)
(with-output-to-file "stdout"
(lambda ()
(printf "plotted\n"))
'append))