racket/compiler-test/tests/compiler/embed/embed-me17a.rkt
2014-12-02 09:30:05 -05:00

10 lines
195 B
Racket

#lang racket
(define print-17
(lambda () (printf "This is 17.\n")))
(module+ sub
(with-output-to-file (build-path (find-system-path 'temp-dir) "stdout")
print-17
#:exists 'append))