aboutsummaryrefslogtreecommitdiff
path: root/challenge-131/tyler-wardhaugh/clojure/src/tw/weekly/c131/core.clj
blob: 2e7e5d7c410e7bb8d9d92a7c1b052251b7b076ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(ns tw.weekly.c131.core
  (:require [tw.weekly.c131.t1 :as t1])
  (:require [tw.weekly.c131.t2 :as t2])
  (:gen-class))

(defn -main
  "Run all tasks"
  [& _]
  (println "Task #1:")
  (t1/-main)
  (println "\nTask #2:")
  (t2/-main))