From 188247651e0f8d2ed2d1aee8e1009f79a888d845 Mon Sep 17 00:00:00 2001 From: Ray Slakinski Date: Tue, 1 Dec 2020 08:21:34 -0500 Subject: [PATCH] fixing naming of day_2 --- 2020/day2/Cargo.toml | 9 --------- 2020/day2/src/main.rs | 3 --- 2 files changed, 12 deletions(-) delete mode 100644 2020/day2/Cargo.toml delete mode 100644 2020/day2/src/main.rs diff --git a/2020/day2/Cargo.toml b/2020/day2/Cargo.toml deleted file mode 100644 index 2ac4104..0000000 --- a/2020/day2/Cargo.toml +++ /dev/null @@ -1,9 +0,0 @@ -[package] -name = "day2" -version = "0.1.0" -authors = ["Ray Slakinski "] -edition = "2018" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - -[dependencies] diff --git a/2020/day2/src/main.rs b/2020/day2/src/main.rs deleted file mode 100644 index e7a11a9..0000000 --- a/2020/day2/src/main.rs +++ /dev/null @@ -1,3 +0,0 @@ -fn main() { - println!("Hello, world!"); -}