From bde02d1a1af0b6601edd2045d299c010b8b737b1 Mon Sep 17 00:00:00 2001 From: Jeremy Saenz Date: Mon, 15 Jul 2013 07:44:17 -0700 Subject: [PATCH] Update README.md Installation --- README.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d381129..32cf632 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,15 @@ -#cli.go +# cli.go cli.go is simple, fast, and fun package for building command line apps in Go. The goal is to enable developers to write fast and distributable command line applications in an expressive way. ## Overview -Command line apps are usually so tiny that there is absolutely no reason why your code should *not* be self-documenting. +Command line apps are usually so tiny that there is absolutely no reason why your code should *not* be self-documenting. Things like generating help text and parsing command flags/options should not hinder productivity when writing a command line app. + +This is where cli.go comes into play. cli.go makes command line programming fun, organized, and expressive! + +## Installation +Make sure you have the a working Go environment. [See the install instructions](http://golang.org/doc/install.html). + +To install cli.go, simply run: +``` +go get github.com/codegangsta/cli +```