9 lines
241 B
Racket
9 lines
241 B
Racket
(module embed-me6 mzscheme
|
|
(with-output-to-file "stdout"
|
|
(lambda ()
|
|
(printf "This is 6\n")
|
|
(with-handlers ([void (lambda (exn) (printf "no etc.ss\n"))])
|
|
(printf "~a\n" (dynamic-require 'mzlib/etc 'true))))
|
|
'append))
|
|
|