diff options
author | Colin Okay <okay@toyful.space> | 2020-12-13 07:29:31 -0600 |
---|---|---|
committer | Colin Okay <okay@toyful.space> | 2020-12-13 07:29:31 -0600 |
commit | a2fcc41e193f68ce8cf5901523e9276723deb88a (patch) | |
tree | 166e96e68466b16428195764739c6acc6952aa4d | |
parent | d25e5a1cdd2e934c8c21851aac93d9a30b8bb0cf (diff) |
deleting files
-rw-r--r-- | lambda-tools.asd | 11 | ||||
-rw-r--r-- | lambda-tools.lisp | 16 |
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))) - - - |