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

2021: new from template

This commit is contained in:
Jeremy Kaplan 2021-12-04 22:45:22 -08:00
commit 18285b0bf1
2 changed files with 88 additions and 0 deletions

16
2021/new/main.tmpl Normal file
View file

@ -0,0 +1,16 @@
package main
import (
"fmt"
"github.com/jdkaplan/advent-of-code/aoc"
)
func main() {
lines := aoc.Input().ReadLines("day{{ .N }}.txt")
fmt.Println(part1(lines))
}
func part1(lines []string) int {
return 0
}