Watch
1
0
Fork
You've already forked advent-of-code
0

Fix template

This commit is contained in:
Jeremy Kaplan 2022-12-08 22:30:36 -08:00
commit 8642d4f4c4

View file

@ -5,7 +5,8 @@ fn main() {
} }
fn part1(input: &str) -> usize { fn part1(input: &str) -> usize {
for line in aoc.split_lines(input) { for line in aoc::split_lines(input) {
todo!() println!("> {:?}", line);
} }
0
} }