aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Okay <okay@toyful.space>2020-12-13 07:29:31 -0600
committerColin Okay <okay@toyful.space>2020-12-13 07:29:31 -0600
commita2fcc41e193f68ce8cf5901523e9276723deb88a (patch)
tree166e96e68466b16428195764739c6acc6952aa4d
parentd25e5a1cdd2e934c8c21851aac93d9a30b8bb0cf (diff)
deleting files
-rw-r--r--lambda-tools.asd11
-rw-r--r--lambda-tools.lisp16
2 files changed, 0 insertions, 27 deletions
diff --git a/lambda-tools.asd b/lambda-tools.asd
deleted file mode 100644
index 31b5dbe..0000000
--- a/lambda-tools.asd
+++ /dev/null
@@ -1,11 +0,0 @@
-;;;; lambda-tools.asd
-
-(asdf:defsystem #:lambda-tools
- :description "Macros and utilities for combining making and lambdas"
- :author "Colin Okay <cbeok@protonmail.com>"
- :license "GPLv3"
- :version "0.0.1"
- :serial t
- :components ((:file "package")
- (:file "macros")
- (:file "lambda-tools")))
diff --git a/lambda-tools.lisp b/lambda-tools.lisp
deleted file mode 100644
index 63f5c4d..0000000
--- a/lambda-tools.lisp
+++ /dev/null
@@ -1,16 +0,0 @@
-;;;; lambda-tools.lisp
-
-(in-package #:lambda-tools)
-
-(defun >> (arg &rest fns)
- (dolist (fn fns)
- (setf arg (funcall fn arg)))
- arg)
-
-
-(defun <> (&rest fns)
- (lambda (arg)
- (apply #'>> arg fns)))
-
-
-