diff --git a/2020/template.go b/2020/template.go new file mode 100644 index 0000000..75fee0b --- /dev/null +++ b/2020/template.go @@ -0,0 +1,15 @@ +package main + +import ( + "fmt" + "os" + + "git.annabunch.es/annabunches/adventofcode/2020/lib/fileutils" + "git.annabunch.es/annabunches/adventofcode/2020/lib/util" +) + +func main() { + step := os.Args[1] + values := fileutils.InputParserStrings(os.Args[2]) + +}