Browse Source

add example.go

Alex Flint 10 years ago
parent
commit
7e1437715b
1 changed files with 14 additions and 0 deletions
  1. +14
    -0
      example/example.go

+ 14
- 0
example/example.go View File

@ -0,0 +1,14 @@
package main
import "github.com/alexflint/go-arg"
func main() {
var args struct {
Input string `arg:"positional"`
Output string `arg:"positional"`
Foo string `arg:"help:this argument is foo"`
VeryLongArgument int `arg:"help:this argument is very long"`
Bar float64 `arg:"-b"`
}
arg.MustParse(&args)
}

Loading…
Cancel
Save