From cc5b39318201ffbea172195cbd2ac28cb48f6042 Mon Sep 17 00:00:00 2001 From: Shivesh Mandalia Date: Tue, 20 Dec 2022 14:08:29 +0000 Subject: Initial commit --- day02a/Cargo.toml | 8 ++++++++ day02a/src/main.rs | 3 +++ 2 files changed, 11 insertions(+) create mode 100644 day02a/Cargo.toml create mode 100644 day02a/src/main.rs (limited to 'day02a') diff --git a/day02a/Cargo.toml b/day02a/Cargo.toml new file mode 100644 index 0000000..9def138 --- /dev/null +++ b/day02a/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "day02a" +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/day02a/src/main.rs b/day02a/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/day02a/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} -- cgit v1.2.3