From 2cf40290b92897f54c78dc9cb3ac290c6ca70e56 Mon Sep 17 00:00:00 2001 From: Colin Jones Date: Mon, 26 Jul 2010 18:15:26 -0500 Subject: [PATCH] more intuitive behavior for blank fn (___) --- src/path_to_enlightenment.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/path_to_enlightenment.clj b/src/path_to_enlightenment.clj index 8185181..9dd3531 100644 --- a/src/path_to_enlightenment.clj +++ b/src/path_to_enlightenment.clj @@ -2,7 +2,7 @@ (:use clojure.test)) (def __ nil) -(def ___ (fn [& args] args)) +(def ___ (fn [& args] nil)) (defmacro meditations [& forms] (let [pairs (partition 2 forms)]