Add untested day14pt1 (but it has tests!)
[adventofcode2019.git] / src / adventofcode2019 / core.clj
CommitLineData
cca08f5d 1(ns adventofcode2019.core
2441c6e8
JK
2 [:require (adventofcode2019 day01 day02 day03 day04 day05
3 day06 day07 day08 day09 day10
e26daef4 4 day11 day12 day13 day14)])
cca08f5d
JK
5
6(defn -main
7 ([]
8 (comment run all))
9 ([day]
10 (let [day-str (str "day" (format "%02d" (Integer/parseInt day)))]
11 (eval (read-string (format "(adventofcode2019.%s/%s)" day-str day-str))))))