[Rust/2020] Add year bin

This commit is contained in:
Felix Bargfeldt 2023-12-26 11:32:00 +01:00
parent 3381043291
commit 8c61ad767b
Signed by: Defelo
GPG key ID: 2A05272471204DD3
2 changed files with 30 additions and 0 deletions

27
Rust/2020/main.rs Normal file
View file

@ -0,0 +1,27 @@
aoc::year! {
"01.rs",
"02.rs",
"03.rs",
"04.rs",
"05.rs",
"06.rs",
"07.rs",
"08.rs",
"09.rs",
"10.rs",
// "11.rs",
// "12.rs",
// "13.rs",
// "14.rs",
// "15.rs",
// "16.rs",
// "17.rs",
// "18.rs",
// "19.rs",
// "20.rs",
// "21.rs",
// "22.rs",
// "23.rs",
// "24.rs",
// "25.rs",
}

View file

@ -41,6 +41,9 @@ path = "lib/lib.rs"
# 2020
[[bin]]
name = "2020"
path = "2020/main.rs"
[[bin]]
name = "2020_01"
path = "2020/01.rs"
[[bin]]