summaryrefslogtreecommitdiff
path: root/src/bin/day_12.rs
blob: 6c40cceed7ac6c6ce444da78bb40a8bce8fbd0b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 --release --bin day_12"

fn main() -> Result<(), Box<Error>> {
    let input = read_file(&PathBuf::from("inputs/12.txt"))?;

    println!("Input: {:?}", input);




    Ok(())
}