package.lisp @ eb92688beebc

Tiny proof of concept demo
author Steve Losh <steve@stevelosh.com>
date Sat, 11 Feb 2017 14:37:44 +0000
parents f61929db839b
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."))