mirror of
https://github.com/kristoferssolo/Advent-of-Code.git
synced 2025-10-21 18:00:35 +00:00
update template
This commit is contained in:
parent
038214af40
commit
605037250c
@ -2,7 +2,7 @@ use color_eyre::Result;
|
||||
use {{crate_name}}::part1::process;
|
||||
|
||||
fn main() -> Result<()> {
|
||||
let file = include_str!("../../input1.txt");
|
||||
let file = include_str!("../../input.txt");
|
||||
let result = process(file)?;
|
||||
println!("{}", result);
|
||||
Ok(())
|
||||
|
||||
@ -2,7 +2,7 @@ use color_eyre::Result;
|
||||
use {{crate_name}}::part2::process;
|
||||
|
||||
fn main() -> Result<()> {
|
||||
let file = include_str!("../../input2.txt");
|
||||
let file = include_str!("../../input.txt");
|
||||
let result = process(file)?;
|
||||
println!("{}", result);
|
||||
Ok(())
|
||||
|
||||
Loading…
Reference in New Issue
Block a user