pub mod input; pub mod one; pub mod two; use input::AdventError; use one::{one_one, one_two}; use two::{two_one, two_two}; fn main() -> Result<(), AdventError> { //one_one()?; //one_two()?; two_one()?; Ok(two_two()?) }