mirror of
https://github.com/kristoferssolo/Advent-of-Code.git
synced 2026-02-03 22:02:03 +00:00
update template
This commit is contained in:
@@ -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(())
|
||||
|
||||
Reference in New Issue
Block a user