We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Suppose I have this program:
package main import ( `fmt` `github.com/docopt/docopt-go` ) func main() { opts, _ := docopt.ParseDoc(` Usage: mytool --number=<num>...`) var conf struct { Number []int } if err := opts.Bind(&conf); err != nil { panic(err) } fmt.Printf("%v\n", conf) }
When executing go run mytool.go I get this error:
go run mytool.go
panic: value of "--number" is not assignable to "Number" field goroutine 1 [running]: main.main() /<path_to_script>/mytool.go:17 +0x190 exit status 2
If I change []int to []string everything works.
[]int
[]string
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Suppose I have this program:
When executing
go run mytool.go
I get this error:If I change
[]int
to[]string
everything works.The text was updated successfully, but these errors were encountered: