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
9package main
10
11import "os"
12
13func 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}
24