about summary refs log tree commit diff
path: root/lisp/main.lisp
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-01-24T10·52+0000
committerWilliam Carroll <wpcarro@gmail.com>2020-01-24T10·52+0000
commit95d03facb3af93323101737d76470f190e7ca2ae (patch)
treeccca388ec70f33fdb678d4888e095a2c0dd6a9f1 /lisp/main.lisp
parentb6fa3941b3731e959a7f54bf8e68e43e9077bf90 (diff)
Support prelude.lisp
Using this module to support utility functions that I have not classified
further than being miscellaneous.
Diffstat (limited to 'lisp/main.lisp')
-rw-r--r--lisp/main.lisp15
1 files changed, 0 insertions, 15 deletions
diff --git a/lisp/main.lisp b/lisp/main.lisp
deleted file mode 100644
index 2c4a5a411635..000000000000
--- a/lisp/main.lisp
+++ /dev/null
@@ -1,15 +0,0 @@
-(in-package #:cl-user)
-(defpackage #:utils
-  (:documentation "Some utility functions and macros to wet my beak.")
-  (:use #:cl)
-  (:shadow #:type))
-(in-package #:utils)
-
-(defmacro type (name in out)
-  `(declaim (ftype (function ,in ,out) ,name)))
-
-(defmacro comment (&rest _forms) nil)
-
-(type add (int int) int)
-(defun add (a b)
-  (+ a b))