From c906d2604616b1cfe04c17a620edbabb309b83e7dafac033cbb2c77bca7c2bef Mon Sep 17 00:00:00 2001 From: Matt Threlfall Date: Fri, 5 Dec 2025 21:08:15 +0000 Subject: [PATCH] Initial commit --- .gitignore | 45 +++++++++++++++++++++++++++++++++++++++++++++ README.md | 3 +++ 2 files changed, 48 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7a8db8e --- /dev/null +++ b/.gitignore @@ -0,0 +1,45 @@ +# ---> Rust +# Generated by Cargo +# will have compiled files and executables +debug/ +target/ + +# These are backup files generated by rustfmt +**/*.rs.bk + +# MSVC Windows builds of rustc generate these, which store debugging information +*.pdb + +# RustRover +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +#.idea/ +# ---> Go +# If you prefer the allow list template instead of the deny list, see community template: +# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore +# +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# Dependency directories (remove the comment below to include it) +# vendor/ + +# Go workspace file +go.work +go.work.sum + +# env file +.env + diff --git a/README.md b/README.md new file mode 100644 index 0000000..287fb36 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# AdventOfCode2025 + +I probably won't finish \ No newline at end of file