aboutsummaryrefslogtreecommitdiff
path: root/six.go
diff options
context:
space:
mode:
authorj-james2020-12-01 05:17:13 +0000
committerj-james2020-12-01 05:17:13 +0000
commitb23ea9372ae92b2add77213393041c62cba9a75b (patch)
tree0e4deb435849ff5a5fb0a4ce93bcd5beac5f386c /six.go
parent73f5728472dc5ffba612b0aead3126c63dd8b7d2 (diff)
Move 2019 Advent of Code work into its own folder
Diffstat (limited to 'six.go')
-rw-r--r--six.go25
1 files changed, 0 insertions, 25 deletions
diff --git a/six.go b/six.go
deleted file mode 100644
index 646313d..0000000
--- a/six.go
+++ /dev/null
@@ -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
-}