src/package.lisp @ cc1aad82d9f6

Fix the tests to match the new API
author Steve Losh <steve@stevelosh.com>
date Tue, 02 Apr 2019 09:51:25 -0400
parents 34d2ad201c73
children 502eaba9e114
(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
    :oldest
    :collect
    :first
    :last

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