racket/pkgs/compiler-test/tests/compiler/embed/embed-me1c.rkt
2016-05-27 17:20:35 -04:00

10 lines
268 B
Racket

#lang scheme/base
(require scheme/runtime-path
(for-syntax scheme/base))
(define-runtime-path file '(lib "etc.ss")) ; in mzlib
(with-output-to-file (build-path (find-system-path 'temp-dir) "stdout")
(lambda () (printf "This is 1c\n"))
#:exists 'append)