syntactic_ast: Added proper handling for Let and Letrec
This commit is contained in:
@@ -18,7 +18,9 @@ and dbg_print_start = function
|
||||
|
||||
|
||||
|
||||
let def = Parser.parse_str "(define (f x) (+ x 1))
|
||||
let def = Parser.parse_str "(define (f)
|
||||
(let ((x 5))
|
||||
(+ x 1)))
|
||||
(define (f)
|
||||
(define (g y) (* y 2))
|
||||
(or (g 5) (g 6)))
|
||||
|
||||
Reference in New Issue
Block a user