From b2f4b64467d49904509fd5e87735536f846121b2 Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Thu, 19 Mar 2015 22:53:10 -0400 Subject: [2nd Super Refactoring That Breaks The System: Part 5] - Changed indents to symbols. - Corrected some of the bugs in the system. Many more still awaiting fixes. --- src/lux.clj | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/lux.clj') diff --git a/src/lux.clj b/src/lux.clj index 3516f2a9c..b0a9a3c94 100644 --- a/src/lux.clj +++ b/src/lux.clj @@ -1,5 +1,6 @@ (ns lux - (:require [lux.compiler :as &compiler] + (:require [lux.base :as &] + [lux.compiler :as &compiler] :reload-all)) (comment @@ -13,9 +14,9 @@ ;; TODO: All optimizations ;; TODO: Take module-name aliasing into account. ;; TODO: - - (time (&compiler/compile-all ["lux"])) - (time (&compiler/compile-all ["lux" "test2"])) + + (time (&compiler/compile-all (&/|list "lux"))) + (time (&compiler/compile-all (&/|list "lux" "test2"))) ;; jar cvf test2.jar *.class test2 && java -cp "test2.jar" test2 ;; cd output && jar cvf test2.jar * && java -cp "test2.jar" test2 && cd .. -- cgit v1.2.3