This commit is contained in:
2023-12-01 19:04:18 -05:00
parent 43b3ece2c3
commit e364357d00
7 changed files with 157 additions and 0 deletions

10
src/main.rs Normal file
View File

@@ -0,0 +1,10 @@
pub mod day01;
pub mod instrument;
use anyhow::Result;
fn main() -> Result<()> {
println!("Advent of Code 2023");
day01::solve()?;
Ok(())
}