8 lines
155 B
Standard ML
8 lines
155 B
Standard ML
type exp =
|
|
| Id of identifier
|
|
| LInt of int
|
|
| Add of exp * exp
|
|
| Mul of exp * exp
|
|
| Sum of identifier * exp * exp * exp
|
|
|
|
and identifier = string
|