/* * Getting to command line args in Go. * Unlike C etc, the main function so not receive the args as params * which somewhat simplifies the language spec (yea). * Instead, get command line args * via os package. This also means that you can easily get them * anywhere, not only in the main function. * @author gtowell * Created: July 20, 2021 */ package main import ( "fmt" "os" ) func main() { //var sep = " " // 0 == the name of the executable which is really boring for i:=1; i