package nuscr

  1. Overview
  2. Docs

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

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