1 package main 2 3 import ( 4 "fmt" 5 "os" 6 ) 7 8 func main() { 9 for i := len(os.Args) - 1; i > 0; i-- { 10 fmt.Println(os.Args[i]) 11 } 12 }