From 86fb08445443be9e09c27b94374eb03ab509e1f1 Mon Sep 17 00:00:00 2001 From: TuDatTr Date: Thu, 1 Dec 2022 12:50:10 +0100 Subject: [PATCH] Initial commit Signed-off-by: TuDatTr --- 2022/day-1_calorie_counting/Cargo.toml | 8 ++++++++ 2022/day-1_calorie_counting/src/main.rs | 3 +++ README.md | 11 +++++++++++ 3 files changed, 22 insertions(+) create mode 100644 2022/day-1_calorie_counting/Cargo.toml create mode 100644 2022/day-1_calorie_counting/src/main.rs create mode 100644 README.md diff --git a/2022/day-1_calorie_counting/Cargo.toml b/2022/day-1_calorie_counting/Cargo.toml new file mode 100644 index 0000000..7aba72f --- /dev/null +++ b/2022/day-1_calorie_counting/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "day-1_calorie_counting" +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/2022/day-1_calorie_counting/src/main.rs b/2022/day-1_calorie_counting/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/2022/day-1_calorie_counting/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..536cd36 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# Advent of Code + +``` +. +├── 2022 +│   └── day-1_calorie_counting +│   ├── Cargo.toml +│   └── src +│   └── main.rs +└── README.md +```