// e1.2 solves Exercise 1.2 package main import ( "fmt" "os" ) func main() { for i, l := range os.Args { fmt.Println(i, l) } }