Module Argument_parser.Make
Parameters
Signature
type spec = | Unit of a -> a| String of string -> a -> a| Int of int -> a -> a
type anon = string -> a -> atype error = | Unknown_option of string| Missing_argument of key * spec * doc| Invalid_argument of key * spec * doc * string
val string_of_error : error -> stringval argument_type : spec -> string