about summary refs log tree commit diff
path: root/lisp/main.lisp
diff options
context:
space:
mode:
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))