From c7a4fbd9b8532dfb8024a93d03645ce07500c256 Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Thu, 7 Dec 2023 16:00:26 -0500 Subject: [PATCH] Add folders for 2023 day5-day7 --- 2023/day5/Cargo.toml | 8 ++++++++ 2023/day5/src/main.rs | 3 +++ 2023/day6/Cargo.toml | 8 ++++++++ 2023/day6/src/main.rs | 3 +++ 2023/day7/Cargo.toml | 8 ++++++++ 2023/day7/src/main.rs | 3 +++ 6 files changed, 33 insertions(+) create mode 100644 2023/day5/Cargo.toml create mode 100644 2023/day5/src/main.rs create mode 100644 2023/day6/Cargo.toml create mode 100644 2023/day6/src/main.rs create mode 100644 2023/day7/Cargo.toml create mode 100644 2023/day7/src/main.rs diff --git a/2023/day5/Cargo.toml b/2023/day5/Cargo.toml new file mode 100644 index 0000000..f9b62bf --- /dev/null +++ b/2023/day5/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "day5" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/2023/day5/src/main.rs b/2023/day5/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/2023/day5/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} diff --git a/2023/day6/Cargo.toml b/2023/day6/Cargo.toml new file mode 100644 index 0000000..89d04ae --- /dev/null +++ b/2023/day6/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "day6" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/2023/day6/src/main.rs b/2023/day6/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/2023/day6/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} diff --git a/2023/day7/Cargo.toml b/2023/day7/Cargo.toml new file mode 100644 index 0000000..b170ccb --- /dev/null +++ b/2023/day7/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "day7" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/2023/day7/src/main.rs b/2023/day7/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/2023/day7/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}