Added test file

This commit is contained in:
Justin Ethier 2016-05-20 20:09:54 -04:00
parent 89d3444ca9
commit 3bfe6cefb0

13
test-opt.scm Normal file
View file

@ -0,0 +1,13 @@
;; A temporary test file
(import (scheme base) (scheme write))
(let ((x 1))
(define y 2)
(write
(+ x y)))
(define (test a)
(write 3))
(test 4)