about summary refs log tree commit diff
path: root/src/go/coords.go
blob: 819f36ff4e39700f8bd1f5b59cf7f22e09b662cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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)
}