github.com/yanyiwu/go@v0.0.0-20150106053140-03d6637dbb7f/test/args.go (about) 1 // run arg1 arg2 2 3 // Copyright 2009 The Go Authors. All rights reserved. 4 // Use of this source code is governed by a BSD-style 5 // license that can be found in the LICENSE file. 6 7 // Test os.Args. 8 9 package main 10 11 import "os" 12 13 func main() { 14 if len(os.Args) != 3 { 15 panic("argc") 16 } 17 if os.Args[1] != "arg1" { 18 panic("arg1") 19 } 20 if os.Args[2] != "arg2" { 21 panic("arg2") 22 } 23 }