aboutsummaryrefslogtreecommitdiff
path: root/src/lux.clj
diff options
context:
space:
mode:
authorEduardo Julian2015-03-19 22:53:10 -0400
committerEduardo Julian2015-03-19 22:53:10 -0400
commitb2f4b64467d49904509fd5e87735536f846121b2 (patch)
tree060c1479ae3801d5124b535605dbb335edf4ed55 /src/lux.clj
parent9a037df75e0d06afb5f26b4c4222009bbfc2c9e6 (diff)
[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.
Diffstat (limited to '')
-rw-r--r--src/lux.clj9
1 files changed, 5 insertions, 4 deletions
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 ..