package.lisp @ 0851848a9c65

Add lisp.prof to .hgignore.
author Steve Losh <steve@stevelosh.com>
date Tue, 14 Mar 2017 13:34:06 +0000
parents 7d9a9d2a4af2
children 4fce923d387e
(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

    :background-color
    :cell-background-color
    :cell-char
    :cell-code
    :cell-color
    :clear
    :clear-area
    :close
    :color
    :color-name
    :composition
    :crop
    :has-input-p
    :height
    :key-case
    :layer
    :open
    :peek
    :print
    :read
    :refresh
    :rgba
    :rgbaf
    :set
    :sleep
    :width
    :with-terminal

    )
  (:shadow

    :close
    :open
    :print
    :read
    :set
    :sleep

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