95d03facb3
Using this module to support utility functions that I have not classified further than being miscellaneous.
14 lines
369 B
Common Lisp
14 lines
369 B
Common Lisp
(in-package #:cl-user)
|
|
(defpackage #:prelude
|
|
(:documentation "Supporting miscellaneous utility functions and macros.")
|
|
(:use #:cl)
|
|
(:shadow #:type)
|
|
(:export #:type #:comment))
|
|
(in-package #:prelude)
|
|
|
|
;; TODO: Add documentation to these macros.
|
|
|
|
(defmacro type (name in out)
|
|
`(declaim (ftype (function ,in ,out) ,name)))
|
|
|
|
(defmacro comment (&rest _forms) nil)
|