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

8 lines
212 B
Racket

#lang racket/base
;; like "embed-me16.rkt" using `module+'
(module+ main
(with-output-to-file (build-path (find-system-path 'temp-dir) "stdout")
(lambda () (printf "This is 20.\n"))
#:exists 'append))