Module Expr.Sexp

An modified S-expression library that distinguishes literal strings and * atoms

type t =
| Literal of Base.string
| Atom of Base.string
| List of t Base.list
val to_string : t -> Base.string