day1 part2

This commit is contained in:
simon
2024-09-13 11:11:09 +02:00
parent eada91d3b9
commit 70d4df91ea
8 changed files with 124 additions and 2 deletions

7
2023/day2/Cargo.lock generated Normal file
View File

@@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "day2"
version = "0.1.0"

6
2023/day2/Cargo.toml Normal file
View File

@@ -0,0 +1,6 @@
[package]
name = "day2"
version = "0.1.0"
edition = "2021"
[dependencies]

0
2023/day2/README.md Normal file
View File

3
2023/day2/src/main.rs Normal file
View File

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}