// $G $F.go && $L $F.$A && ./$A.out arg1 arg2// Copyright 2009 The Go Authors. All rights reserved.// Use of this source code is governed by a BSD-style// license that can be found in the LICENSE file.packagemainimport"os"funcmain(){iflen(os.Args)!=3{panic("argc")}ifos.Args[1]!="arg1"{panic("arg1")}ifos.Args[2]!="arg2"{panic("arg2")}}