gnuflag icon indicating copy to clipboard operation
gnuflag copied to clipboard

GNU-compatible flag handling with a stdlib-like API for Go

Results 1 gnuflag issues
Sort by recently updated
recently updated
newest added

``` package main import ( "fmt" "github.com/juju/gnuflag" ) func main() { var a, b bool gnuflag.BoolVar(&a, "a", false, "1st bool") gnuflag.BoolVar(&b, "b", false, "2nd bool") gnuflag.CommandLine.Parse(true, []string{"-ab"}) // WRONG: true...