feat: minimal structure
This commit is contained in:
parent
e0dcdd8fa1
commit
239b7ff622
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
input
|
||||
.clj-kondo
|
||||
.lsp
|
||||
|
||||
|
11
main.clj
11
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)
|
||||
|
9
src/day01.clj
Normal file
9
src/day01.clj
Normal file
@ -0,0 +1,9 @@
|
||||
(ns day01
|
||||
"Day 01 funtions")
|
||||
|
||||
(defn part1 []
|
||||
(println "here will be the solution to day 1 part 1"))
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user