/src/chillax.lisp

http://github.com/sykopomp/chillax · Lisp · 11 lines · 10 code · 1 blank · 0 comment · 0 complexity · ffaab6b27b6406f0154bde7cd7e64834 MD5 · raw file

  1. (cl:defpackage #:chillax
  2. (:use :cl :chillax.core :chillax.yason))
  3. (cl:in-package :chillax)
  4. (eval-when (:compile-toplevel :load-toplevel :execute)
  5. (do-external-symbols (s (find-package :chillax.core))
  6. (export s (find-package :chillax)))
  7. (do-external-symbols (s (find-package :chillax.yason))
  8. (export s (find-package :chillax))))
  9. (defparameter *chillax-version* '(0 4 1))
  10. (export '*chillax-version*)