c0.mes: simpler bug.

This commit is contained in:
Jan Nieuwenhuizen 2016-07-17 15:12:01 +02:00
parent 00b80c645a
commit e8d7fd95c7
2 changed files with 21 additions and 0 deletions

1
TODO
View File

@ -3,6 +3,7 @@
** syntax.mes
** or psyntax.pp
** bugs
*** c1.mes
*** closure.mes
*** using (let () ...) in macro.mes/syntax.mes
*** <=, => take only 2 arguments

20
c0.mes Normal file
View File

@ -0,0 +1,20 @@
;; guile:
;; 0
;; 0
;; mes:
;; 0
;; 1
(define b 0)
(define x (lambda () b))
(display (x))
(newline)
(define (c b)
(display (x))
(newline)
(x))
(c 1)
""