summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2023-12-05 14:05:31 +0000
committerAdam T. Carpenter <atc@53hor.net>2023-12-05 14:05:31 +0000
commit5977e5323a08d02a5ea1ec29376cf93ee2b005a4 (patch)
tree4d09c3902db5048bb9c35970f466ad71bc7feb4f
parent46cee023d2c7473095b65a543076cc1d40d9ab80 (diff)
downloadaoc2023-master.tar.xz
aoc2023-master.zip
include day 3HEADmaster
-rw-r--r--aoc03/Cargo.toml8
-rw-r--r--aoc03/src/main.rs3
2 files changed, 11 insertions, 0 deletions
diff --git a/aoc03/Cargo.toml b/aoc03/Cargo.toml
new file mode 100644
index 0000000..dbf10ca
--- /dev/null
+++ b/aoc03/Cargo.toml
@@ -0,0 +1,8 @@
+[package]
+name = "aoc03"
+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/aoc03/src/main.rs b/aoc03/src/main.rs
new file mode 100644
index 0000000..e7a11a9
--- /dev/null
+++ b/aoc03/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}