Finish day2, add project structure
[adventofcode2019.git] / src / adventofcode2019 / core.clj
1 (ns adventofcode2019.core
2 [:require (adventofcode2019 day01 day02)])
3
4 (defn -main
5 ([]
6 (comment run all))
7 ([day]
8 (let [day-str (str "day" (format "%02d" (Integer/parseInt day)))]
9 (eval (read-string (format "(adventofcode2019.%s/%s)" day-str day-str))))))