about summary refs log tree commit diff
path: root/lisp/prelude.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/prelude.lisp')
-rw-r--r--lisp/prelude.lisp14
1 files changed, 0 insertions, 14 deletions
diff --git a/lisp/prelude.lisp b/lisp/prelude.lisp
deleted file mode 100644
index 3522567ea0f7..000000000000
--- a/lisp/prelude.lisp
+++ /dev/null
@@ -1,14 +0,0 @@
-(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)