Files
olisp/lib/parser/ast.ml
2025-12-08 22:25:36 +03:00

10 lines
141 B
Standard ML

type lisp_ast =
| LInt of int
| LDouble of float
| LSymbol of string
| LString of string
| LNil
| LCons of lisp_ast * lisp_ast