Temporary test file

This commit is contained in:
Justin Ethier 2015-06-23 20:46:30 -04:00
parent e782030d06
commit ff634d8e18

9
test2.scm Normal file
View file

@ -0,0 +1,9 @@
(import (scheme base)
(scheme file))
(with-output-to-file
"test.out"
(lambda ()
(write 'hello)
(display " ")
(display 'world)))