package treeprint

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