]> Cypherpunks.ru repositories - gostls13.git/blobdiff - test/args.go
cmd/compile/internal/inline: score call sites exposed by inlines
[gostls13.git] / test / args.go
index 684cc4600951586a6c2aaa22ef1a02bf6617cec0..0ffe8101e9d862cbf503becb362e28e4bbdf6cac 100644 (file)
@@ -1,19 +1,23 @@
-// $G $F.go && $L $F.$A && ./$A.out arg1 arg2
+// run 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.
 
+// Test os.Args.
+
 package main
 
+import "os"
+
 func main() {
-       if sys.argc() != 3 {
-               panic "argc"
+       if len(os.Args) != 3 {
+               panic("argc")
        }
-       if sys.argv(1) != "arg1" {
-               panic "arg1"
+       if os.Args[1] != "arg1" {
+               panic("arg1")
        }
-       if sys.argv(2) != "arg2" {
-               panic "arg2"
+       if os.Args[2] != "arg2" {
+               panic("arg2")
        }
 }