From 7a6067422dc9e042d5f01412775f16c5cc359bbb Mon Sep 17 00:00:00 2001 From: Colin Jones Date: Sun, 11 Jul 2010 16:04:37 -0500 Subject: [PATCH] no need for all this duplication --- src/path_to_enlightenment.clj | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/src/path_to_enlightenment.clj b/src/path_to_enlightenment.clj index b58861e..8178b6c 100644 --- a/src/path_to_enlightenment.clj +++ b/src/path_to_enlightenment.clj @@ -13,14 +13,15 @@ (System/exit 0))) pairs)))) -(load "about_equalities") -(load "about_lists") -(load "about_vectors") -(load "about_sets") -(load "about_maps") -(load "about_functions") -(load "about_conditionals") -(load "about_higher_order_functions") -(load "about_runtime_polymorphism") -(load "about_sequence_comprehensions") +(load "about_equalities" + "about_lists" + "about_vectors" + "about_sets" + "about_maps" + "about_functions" + "about_conditionals" + "about_higher_order_functions" + "about_runtime_polymorphism" + "about_sequence_comprehensions") + (println "You have achieved clojure enlightenment. Namaste.")