From 31cc87e7e983cf4b416c65381236f1d442e91523 Mon Sep 17 00:00:00 2001 From: Rarapony Date: Fri, 2 Dec 2022 23:40:15 -0500 Subject: [PATCH] d2 --- day2/Cargo.toml | 8 ++++++++ day2/src/main.rs | 3 +++ 2 files changed, 11 insertions(+) create mode 100644 day2/Cargo.toml create mode 100644 day2/src/main.rs diff --git a/day2/Cargo.toml b/day2/Cargo.toml new file mode 100644 index 0000000..8aa34bb --- /dev/null +++ b/day2/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "day2" +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/day2/src/main.rs b/day2/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/day2/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}