mirror of
https://github.com/kristoferssolo/Advent-of-Code.git
synced 2025-10-21 18:00:35 +00:00
10 lines
202 B
Rust
10 lines
202 B
Rust
use color_eyre::Result;
|
|
use day_01::part1::process;
|
|
|
|
fn main() -> Result<()> {
|
|
let file = include_str!("../../input1.txt");
|
|
let result = process(file)?;
|
|
println!("{}", result);
|
|
Ok(())
|
|
}
|