Module Costlang.Num

Int or float

type t =
  1. | Int of int
  2. | Float of float
val pp : Stdlib.Format.formatter -> t -> unit
val add : t -> t -> t
val mul : t -> t -> t
val compare : t -> t -> int