Module Language.Literal (.ml)

module Literal: sig .. end

type '_ t = 
| Int : int -> int t
| String : string -> string t
| Bool : bool -> bool t
val to_shell : 'a. 'a t -> string
module String: sig .. end