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

9 lines
266 B
Racket

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