commit b7187433abd0802ce5a724cb9149a6765fc6c281 Author: Nico Fricke Date: Fri Dec 1 08:52:08 2023 +0100 first commit 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!"); +}