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

(defn -main [& _]
  (time (&compiler/compile-all (&/|list "program")))
  (System/exit 0))

(comment
  ;; cd output && jar cvf program.jar * && java -cp "program.jar" program && cd ..
  )