aboutsummaryrefslogtreecommitdiff
path: root/src/lux.clj
blob: b6949490984ca7abe6853ec739302e8fc69a0b22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(ns lux
  (:require [lux.base :as &]
            [lux.compiler :as &compiler]
            :reload-all))

(comment
  ;; TODO: Finish total-locals

  (time (&compiler/compile-all (&/|list "lux")))
  (System/gc)
  (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 ..
  )