8 lines
156 B
Scheme
8 lines
156 B
Scheme
(module embed-me3 mzscheme
|
|
(require mzlib/etc)
|
|
(with-output-to-file "stdout"
|
|
(lambda ()
|
|
(printf "3 is here, too? ~a\n" true))
|
|
'append))
|
|
|