13 lines
329 B
OCaml
13 lines
329 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 compare : ?compare:(string->string->int) -> t -> t -> int
|
|
val pp : Format.formatter -> t -> unit
|
|
val extract : t -> string
|