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

Update template

This commit is contained in:
Jeremy Kaplan 2022-12-11 20:57:01 -08:00
commit 3950c3a828

View file

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