A short list of programs that should parse but wont at the moment. - [ ] Functions without args `(f)` - [ ] Simple letrec. ```scheme (letrec ((e (lambda (x) (if (zero? x) #t (o (dec x))))) (o (lambda (x) (if (zero? x) #f (e (dec x)))))) (e 25)) ```
A short list of programs that should parse but wont at the moment.
(f)