package.lisp @ 45ccf0952128

Print examples in usage if requested
author Steve Losh <steve@stevelosh.com>
date Fri, 21 Dec 2018 00:16:00 -0500
parents 4691a8636f3f
children 16b92b8ab5d9
(defpackage :adopt
  (:use :cl)
  (:export
    :define-interface
    :parse-options

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

    :argv
    :exit

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

    :flip
    :oldest
    :newest
    :collect

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