Day 1, 2 and 3

This commit is contained in:
Max
2022-12-03 13:49:36 +01:00
commit 129c9f85a0
82 changed files with 5859 additions and 0 deletions

1
day9/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

8
day9/Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "day9"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
day9/src/main.rs Normal file
View File

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