package treeprint

  1. Overview
  2. Docs
type t =
  1. | Num of int
  2. | Var of string
  3. | BinOp of string * t * t
  4. | Seq of t list
  5. | IfThenElse of t * t * t option
  6. | TyAs of t * t
  7. | Tuple of t list
  8. | TyArrow of t * t
  9. | TyTuple of t list
  10. | Uminus of t
  11. | App of t * t