11 lines
142 B
Standard ML
11 lines
142 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
|
|
|