all: fixed memleaks; compiler: closures work

This commit is contained in:
2017-09-07 17:41:27 +02:00
parent a37ec816e6
commit 682bc9db60
9 changed files with 180 additions and 44 deletions

View File

@@ -1,5 +1,6 @@
(define x 1)
(define inc (lambda (n) (sum n 1)))
(define incr 1)
(define inc (lambda (n) (sum n incr)))
(display (inc x))