DEBSOURCES
Skip Quicknav
sources / ocaml-dune / 3.20.2-3 / doc / tutorials / developing-with-dune / development-cycle / lib / ast.ml
1234567891011
type op = | Add | Mul | Div type exp = | Int of int | Float of float | Ident of string | Op of op * exp * exp | Call of string * exp