package main import ( "fmt" "os" ) func main() { if len(os.Args) != 2 { return } fmt.Println(os.Args[1]) }