compiler: can now implement functions

This commit is contained in:
2017-09-06 16:17:33 +02:00
parent e055cfe88f
commit a37ec816e6
2 changed files with 71 additions and 8 deletions

View File

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