Closed sasagawa888 closed 1 year ago
(flet ((f (x) (+ x 3))) (flet ((f (x) (+ x (f x)))) (f 7)))
Fixed.
(defun foo (x) (flet ((f (x) (+ x 3) )) (flet ((f (x) (+ x (f x)) )) (f x))) ) Easy-ISLisp Ver3.00 > (load "tests/bug.o") T > (foo 7) 17 >