diff options
Diffstat (limited to '')
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | Cargo.toml | 6 | ||||
-rw-r--r-- | src/bin/day01.rs | 2 |
4 files changed, 13 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index d553987..eb5a316 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -day?? +target diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..2a3d212 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,4 @@ +[root] +name = "aoc" +version = "0.1.0" + diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..5db5a11 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "aoc" +version = "0.1.0" +authors = ["June McEnroe <programble@gmail.com>"] + +[dependencies] diff --git a/src/bin/day01.rs b/src/bin/day01.rs new file mode 100644 index 0000000..f79c691 --- /dev/null +++ b/src/bin/day01.rs @@ -0,0 +1,2 @@ +fn main() { +} |