AoC-2023/src/main.rs

13 lines
167 B
Rust
Raw Normal View History

2023-12-02 00:39:37 +01:00
pub mod input;
pub mod one;
use input::AdventError;
use one::one_one;
use one::one_two;
fn main() -> Result<(), AdventError> {
one_one()?;
Ok(one_two()?)
}