summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md10
1 files changed, 4 insertions, 6 deletions
diff --git a/README.md b/README.md
index 9c1c20b..b08300a 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,9 @@
## Structured argument parsing for Go
+```shell
+go get github.com/alexflint/go-arg
+```
+
```go
var args struct {
Foo string
@@ -14,12 +18,6 @@ $ ./example --foo=hello --bar
hello true
```
-### Installation
-
-```shell
-go get github.com/alexflint/go-arg
-```
-
### Default values
```go