Module Ast.Constant


module Constant: sig  end


type constant =
| Int of int
| Float of float
| String of string
| EnumC of int * string

val toString : constant -> string