From 819a06ab7310ff8606206be83bbba077992596c1 Mon Sep 17 00:00:00 2001 From: Justin Worthe Date: Sat, 17 Nov 2018 21:58:31 +0200 Subject: Scaffolded out files for each day of the advent of code These don't really do anything except make it a bit easier and faster to start the day's challenge. --- src/bin/day_9.rs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/bin/day_9.rs (limited to 'src/bin/day_9.rs') diff --git a/src/bin/day_9.rs b/src/bin/day_9.rs new file mode 100644 index 0000000..8d13376 --- /dev/null +++ b/src/bin/day_9.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_9" + +fn main() -> Result<(), Box> { + let input = read_file(&PathBuf::from("inputs/9.txt"))?; + + println!("Input: {:?}", input); + + + + + Ok(()) +} -- cgit v1.2.3