adventofcode/2020/template.go

15 lines
186 B
Go
Raw Normal View History

2020-12-11 04:21:50 +00:00
package main
import (
"fmt"
"os"
2020-12-14 23:27:46 +00:00
"git.annabunch.es/annabunches/adventofcode/2020/lib/util"
2020-12-11 04:21:50 +00:00
)
func main() {
2020-12-11 21:24:57 +00:00
// step := os.Args[1]
2020-12-14 23:27:46 +00:00
values := util.InputParserStrings(os.Args[2])
2020-12-11 04:21:50 +00:00
}