Reorganized project

This commit is contained in:
2025-12-08 22:25:36 +03:00
parent 8e980a8f1b
commit adbf083c3d
15 changed files with 621 additions and 0 deletions

9
lib/parser/ast.ml Normal file
View File

@@ -0,0 +1,9 @@
type lisp_ast =
| LInt of int
| LDouble of float
| LSymbol of string
| LString of string
| LNil
| LCons of lisp_ast * lisp_ast