core_ast: remove letrec comment

This commit is contained in:
2026-02-04 21:52:16 +03:00
parent 3a3bf2c674
commit a250d96c63
2 changed files with 41 additions and 1 deletions

View File

@@ -16,7 +16,6 @@ type expression =
| Var of string
| Apply of expression * expression
| Lambda of string * expression
(*| LetRec of (string * expression) list * expression *)
| If of expression * expression * expression
| Set of string * expression
| Begin of expression list