Module Runtime.Value

type value =
  1. | Int32 of int
  2. | Int64 of int
  3. | Float32 of float
  4. | Float64 of float
val string_of_value : value -> string