This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module AST = | |
type Name = string | |
type TypeName = string | |
type Literal = Int of int | Bool of bool | String of string | Void | |
type Expr = | |
| Literal of Literal | |
| Rem of Expr * Expr |