Rename modules

This commit is contained in:
LordMathis 2023-12-18 20:52:02 +01:00
parent 6d5fc9fb93
commit a3752c5cee
16 changed files with 21 additions and 0 deletions

6
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,6 @@
{
"rust-analyzer.linkedProjects": [
"./Cargo.toml",
"./Cargo.toml"
]
}

View File

@ -1,3 +1,5 @@
pub mod year_2023;
fn main() {
println!("Hello, world!");
}

View File

@ -0,0 +1,2 @@
pub mod part_one;
pub mod part_two;

View File

@ -0,0 +1,2 @@
pub mod part_one;
pub mod part_two;

View File

@ -0,0 +1 @@
pub mod part_one;

View File

@ -0,0 +1 @@
pub mod part_one;

View File

@ -0,0 +1,2 @@
pub mod part_one;
pub mod part_two;

5
src/year_2023/mod.rs Normal file
View File

@ -0,0 +1,5 @@
pub mod day_01_trebuchet;
pub mod day_02_cube_conundrum;
pub mod day_03_gear_ratios;
pub mod day_04_scratchcards;
pub mod day_06_wait_for_it;