Skip to content

Commit

Permalink
day10 template
Browse files Browse the repository at this point in the history
  • Loading branch information
mdr committed Dec 9, 2024
1 parent e6a8c58 commit e6619e8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
6 changes: 6 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,9 @@ tasks:
- build
cmds:
- .lake/build/bin/day9
day10:
desc: Run day 10
deps:
- build
cmds:
- .lake/build/bin/day10
6 changes: 5 additions & 1 deletion lakefile.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "aoc2024"
version = "0.1.0"
defaultTargets = [ "day1", "day2", "day3", "day4", "day5", "day6", "day7", "day8", "day9",]
defaultTargets = [ "day1", "day2", "day3", "day4", "day5", "day6", "day7", "day8", "day9", "day10",]
[[lean_lib]]
name = "Aoc2024"

Expand Down Expand Up @@ -40,6 +40,10 @@ root = "Aoc2024.Day08.Main"
name = "day9"
root = "Aoc2024.Day09.Main"

[[lean_exe]]
name = "day10"
root = "Aoc2024.Day10.Main"

[[require]]
name = "Regex"
git = "https://github.com/bergmannjg/regex"
Expand Down

0 comments on commit e6619e8

Please sign in to comment.