commit c0827d7824f1666b08cdc1fd1554435392a030d1 Author: Benjamyn Love Date: Sun Dec 1 16:02:10 2024 +1100 Initial diff --git a/aoc-01/.gitignore b/aoc-01/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/aoc-01/.gitignore @@ -0,0 +1 @@ +/target diff --git a/aoc-01/Cargo.toml b/aoc-01/Cargo.toml new file mode 100644 index 0000000..23b8e96 --- /dev/null +++ b/aoc-01/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "aoc-01" +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/aoc-01/src/main.rs b/aoc-01/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/aoc-01/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}