16 lines
252 B
Go
16 lines
252 B
Go
|
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])
|
||
|
|
||
|
}
|