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