package.lisp @ 49a9f77d515f

Add restarts and more
author Steve Losh <steve@stevelosh.com>
date Wed, 19 Dec 2018 17:46:09 -0500
parents 35cff9a179f4
children 4691a8636f3f
(defpackage :adopt
  (:use :cl)
  (:export
    :define-interface
    :parse-options

    :print-usage
    :print-usage-and-exit
    :print-error-and-exit

    :argv
    :exit

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

    :flip
    :oldest
    :newest
    :collect

    )
  (:shadow :collect :documentation :reduce))