Module Ast.Constant

type t =
  1. | Const_integer of int
    (*

    Integer constant.

    *)
  2. | Const_char of char
    (*

    Character constant.

    *)
  3. | Const_string of ident
    (*

    String constant.

    *)
val equal : t -> t -> bool
val pp : Stdlib.Format.formatter -> t -> unit
val show : t -> ident
val gen : t QCheck.Gen.t
val arb : t QCheck.arbitrary