syntactic_ast: Added proper handling for Let and Letrec
All checks were successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/cron/build Pipeline was successful

This commit is contained in:
2026-01-03 21:35:27 +03:00
parent 9fb29afc3e
commit e95a115acf
2 changed files with 31 additions and 3 deletions

View File

@@ -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)))