go: flag
Checking out the flag package, Go’s built in command line argument parser. Here’s a simple example:
// flag.go package main import ( "flag" "fmt" ) var code *int = flag.Int("areacode", 716, "give me your codes") func main() { fmt.Printf("Testing out flags!\n"); flag.Parse();...