2013-04-10 16:57:12 -07:00
|
|
|
package main
|
|
|
|
|
import (
|
2017-09-23 10:01:46 +02:00
|
|
|
"fmt"
|
|
|
|
|
"os"
|
2013-04-10 16:57:12 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func main() {
|
2017-09-23 10:01:46 +02:00
|
|
|
for i, x := range os.Args[1:] {
|
|
|
|
|
fmt.Printf("the argument #%d is %s\n", i, x)
|
|
|
|
|
}
|
2013-04-10 16:57:12 -07:00
|
|
|
}
|