AoC-2023/src/main.rs

17 lines
233 B
Rust
Raw Normal View History

2023-12-02 00:39:37 +01:00
pub mod input;
pub mod one;
2023-12-02 12:29:28 +01:00
pub mod two;
2023-12-04 18:04:05 +01:00
pub mod three;
2023-12-02 00:39:37 +01:00
use input::AdventError;
fn main() -> Result<(), AdventError> {
2023-12-04 18:04:05 +01:00
one::one()?;
one::two()?;
two::one()?;
two::two()?;
three::one()?;
Ok(three::two()?)
2023-12-02 00:39:37 +01:00
}