7 lines
204 B
Racket
7 lines
204 B
Racket
(module embed-me2 mzscheme
|
|
(require "embed-me1.ss"
|
|
mzlib/etc)
|
|
(with-output-to-file (build-path (find-system-path 'temp-dir) "stdout")
|
|
(lambda () (printf "This is 2: ~a\n" true))
|
|
'append))
|