day 1 optimizations, day 2 setup

This commit is contained in:
2020-12-01 14:33:20 -05:00
parent 188247651e
commit d8dbdca446
3 changed files with 33 additions and 19 deletions

9
2020/day_2/Cargo.toml Normal file
View File

@@ -0,0 +1,9 @@
[package]
name = "day_2"
version = "0.1.0"
authors = ["Ray Slakinski <ray.slakinski@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
2020/day_2/src/main.rs Normal file
View File

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}