diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..63af30a --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +input +.clj-kondo +.lsp + + diff --git a/main.clj b/main.clj index e69de29..cef0dc9 100644 --- a/main.clj +++ b/main.clj @@ -0,0 +1,11 @@ +(ns main + "Advent Of Code 2023 solved in Clojure" + (:require + [day01 :as day01])) + +(defn aoc-23 [] + (printf "Advent of Code 2023, solved in Clojure.\n\n") + (day01/part1)) + +(aoc-23) + diff --git a/src/day01.clj b/src/day01.clj new file mode 100644 index 0000000..34afb97 --- /dev/null +++ b/src/day01.clj @@ -0,0 +1,9 @@ +(ns day01 + "Day 01 funtions") + +(defn part1 [] + (println "here will be the solution to day 1 part 1")) + + + +