gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/_test/flag0.go (about) 1 package main 2 3 import ( 4 "flag" 5 "fmt" 6 ) 7 8 func main() { 9 flag.Parse() 10 fmt.Println("Narg:", flag.NArg()) 11 } 12 13 // Output: 14 // Narg: 0