Source file json.ml

1
2
3
4
5
6
7
type t =
  | Null
  | Bool of bool
  | Array of t list
  | Record of (string * t) list
  | Number of float
  | String of string