package.lisp @ f61929db839b

Initial commit
author Steve Losh <steve@stevelosh.com>
date Sat, 11 Feb 2017 00:52:24 +0000
parents (none)
children 7d9a9d2a4af2
(defpackage :bearlibterminal/low-level
  (:use)
  (:export)
  (:import-from :cl
    :&rest)
  (:nicknames :blt/ll)
  (:documentation "This package contains the low-level, SWIG-generated wrapper functions for bearlibterminal."))

(defpackage :bearlibterminal/high-level
  (:use :cl
        :bearlibterminal.quickutils)
  (:export)
  (:nicknames :blt/hl :blt)
  (:documentation "This package contains a high-level, lispy interface to bearlibterminal.  It has the nickname `blt` for easy prefixing."))