ligo/vendors/ligo-utils/simple-utils/x_string.mli
2020-05-18 12:56:47 +02:00

12 lines
267 B
OCaml

(*
Ligo_string represent string as they are writen in a ligo program,
delimited either with double quotes (standard) or with `{|...|}` (Varbatim)
*)
type t =
Standard of string
| Verbatim of string
val pp : Format.formatter -> t -> unit
val extract : t -> string