src/package.lisp @ 1a81296fb3ec v1.0.0

Release!
author Steve Losh <steve@stevelosh.com>
date Tue, 21 May 2019 22:51:50 -0400
parents 502eaba9e114
children d5dbc46f6ddb
(defpackage :adopt
  (:use :cl)
  (:export
    :define-string

    :make-option
    :make-group
    :make-interface

    :parse-options

    :print-help
    :print-help-and-exit
    :print-error-and-exit
    :print-manual

    :argv
    :exit

    :unrecognized-option
    :problematic-option
    :discard-option
    :treat-as-argument
    :supply-new-value

    :flip
    :collect
    :first
    :last

    )
  (:shadow :collect :reduce :first :last))