vendor/quickutils-package.lisp @ 5e7aa5bae23f
Add a basic debugger UI
| author | Steve Losh <steve@stevelosh.com> |
|---|---|
| date | Thu, 17 Nov 2016 23:54:14 +0000 |
| parents | d7119e2cc512 |
| children | (none) |
(eval-when (:compile-toplevel :load-toplevel :execute) (unless (find-package "CHIP8.QUICKUTILS") (defpackage "CHIP8.QUICKUTILS" (:documentation "Package that contains Quickutil utility functions.") (:use :cl)))) (in-package "CHIP8.QUICKUTILS") ;; need to define this here so sbcl will shut the hell up about it being ;; undefined when compiling quickutils.lisp. computers are trash. (defparameter *utilities* nil)