diff options
author | j-james | 2020-12-01 05:17:13 +0000 |
---|---|---|
committer | j-james | 2020-12-01 05:17:13 +0000 |
commit | b23ea9372ae92b2add77213393041c62cba9a75b (patch) | |
tree | 0e4deb435849ff5a5fb0a4ce93bcd5beac5f386c /six.go | |
parent | 73f5728472dc5ffba612b0aead3126c63dd8b7d2 (diff) |
Move 2019 Advent of Code work into its own folder
Diffstat (limited to 'six.go')
-rw-r--r-- | six.go | 25 |
1 files changed, 0 insertions, 25 deletions
@@ -1,25 +0,0 @@ -package main - -import ( - "io/ioutil" - "os" -) - -func main() { - if len(os.Args) < 2 { - panic("runtime error: missing operand") - } - file, err := ioutil.ReadFile(os.Args[1]) - if err != nil { - panic(err) - } - - for i := 0 -} - -func orbits(planet string) []string { - - var chain []string - - return chain -} |