Test case for compile-time eval

This commit is contained in:
Justin Ethier 2015-04-08 14:47:46 -04:00
parent cc15c8b5f3
commit e68ae17b86

View file

@ -1,7 +1,12 @@
((lambda (x) ;((lambda (x)
((lambda () ; ((lambda ()
((lambda (z) ; ((lambda (z)
(+ x z)) 2)))) 1) ; (+ x z)) 2));))
; 1)
;((lambda (x y z) (+ x y)) 1 2 3)
((lambda () (+ 1 2)))
;;; Temporary testing, delete this once it works ;;; Temporary testing, delete this once it works
; Need to rewrite the code to use this, and preserve the global def ; Need to rewrite the code to use this, and preserve the global def
;(define (test) ;(define (test)