From b7187433abd0802ce5a724cb9149a6765fc6c281 Mon Sep 17 00:00:00 2001 From: Nico Fricke Date: Fri, 1 Dec 2023 08:52:08 +0100 Subject: [PATCH] first commit --- Day01/.gitignore | 5 +++++ Day01/Cargo.toml | 8 ++++++++ Day01/src/main.rs | 3 +++ 3 files changed, 16 insertions(+) create mode 100644 Day01/.gitignore create mode 100644 Day01/Cargo.toml create mode 100644 Day01/src/main.rs diff --git a/Day01/.gitignore b/Day01/.gitignore new file mode 100644 index 0000000..8789131 --- /dev/null +++ b/Day01/.gitignore @@ -0,0 +1,5 @@ +.idea +target +debug +Cargo.lock +**/*.rs.bk diff --git a/Day01/Cargo.toml b/Day01/Cargo.toml new file mode 100644 index 0000000..6f6c3a0 --- /dev/null +++ b/Day01/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "Day01" +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/Day01/src/main.rs b/Day01/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/Day01/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}