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