about summary refs log tree commit diff
path: root/src/go/coords.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/go/coords.go')
-rw-r--r--src/go/coords.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/go/coords.go b/src/go/coords.go
new file mode 100644
index 0000000..819f36f
--- /dev/null
+++ b/src/go/coords.go
@@ -0,0 +1,18 @@
+// Generate Star coordinates using a custom function
+
+// arg1 = number of stars
+// arg2 = save path
+
+package main
+
+import (
+  "fmt"
+  "os"
+)
+
+func main(){
+
+  arguments := os.Args[1:]
+
+  fmt.Println(arguments)
+}