feat: minimal structure

This commit is contained in:
Fernando Araoz 2024-11-08 17:29:15 -05:00
parent e0dcdd8fa1
commit 239b7ff622
3 changed files with 25 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
input
.clj-kondo
.lsp

View File

@ -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
View File

@ -0,0 +1,9 @@
(ns day01
"Day 01 funtions")
(defn part1 []
(println "here will be the solution to day 1 part 1"))