summaryrefslogtreecommitdiff
path: root/src/bin/day_8.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/day_8.rs')
-rw-r--r--src/bin/day_8.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/bin/day_8.rs b/src/bin/day_8.rs
new file mode 100644
index 0000000..4b9a731
--- /dev/null
+++ b/src/bin/day_8.rs
@@ -0,0 +1,18 @@
+extern crate advent_of_code_2018;
+use advent_of_code_2018::*;
+
+use std::error::Error;
+use std::path::PathBuf;
+
+// cargo watch -cs "cargo run --bin day_8"
+
+fn main() -> Result<(), Box<Error>> {
+ let input = read_file(&PathBuf::from("inputs/8.txt"))?;
+
+ println!("Input: {:?}", input);
+
+
+
+
+ Ok(())
+}