2021: new from template
This commit is contained in:
parent
6e64e705b3
commit
18285b0bf1
2 changed files with 88 additions and 0 deletions
16
2021/new/main.tmpl
Normal file
16
2021/new/main.tmpl
Normal 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
|
||||
}
|
||||
Loading…
Reference in a new issue