2008-06-24 16:31:03 -06:00
|
|
|
// $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.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
2009-05-08 16:21:41 -06:00
|
|
|
import "os"
|
|
|
|
|
2008-06-24 16:31:03 -06:00
|
|
|
func main() {
|
2009-05-08 16:21:41 -06:00
|
|
|
if len(os.Args) != 3 {
|
2008-08-11 23:07:49 -06:00
|
|
|
panic("argc")
|
2008-06-24 16:31:03 -06:00
|
|
|
}
|
2009-05-08 16:21:41 -06:00
|
|
|
if os.Args[1] != "arg1" {
|
2008-08-11 23:07:49 -06:00
|
|
|
panic("arg1")
|
2008-06-24 16:31:03 -06:00
|
|
|
}
|
2009-05-08 16:21:41 -06:00
|
|
|
if os.Args[2] != "arg2" {
|
2008-08-11 23:07:49 -06:00
|
|
|
panic("arg2")
|
2008-06-24 16:31:03 -06:00
|
|
|
}
|
|
|
|
}
|