From 43d4e59a92eff6561094339898ed916a8dbc168e Mon Sep 17 00:00:00 2001 From: Bearmine Date: Sun, 25 May 2025 08:15:48 -0500 Subject: [PATCH] day 1 setup --- day_01/Cargo.toml | 6 ++++++ day_01/src/main.rs | 3 +++ 2 files changed, 9 insertions(+) create mode 100644 day_01/Cargo.toml create mode 100644 day_01/src/main.rs diff --git a/day_01/Cargo.toml b/day_01/Cargo.toml new file mode 100644 index 0000000..8fe907b --- /dev/null +++ b/day_01/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "day_01" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/day_01/src/main.rs b/day_01/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/day_01/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}