huml
Huml
type t = [
| `String of string
| `Float of float
| `Int of int
| `Intlit of string
| `Bool of bool
| `Null
| `Assoc of (string * Huml__.Types.Ast.t) list
| `List of Huml__.Types.Ast.t list
]
val parse : Lexing.lexbuf -> (t, string) result