From 36f729102de08bd94e6b7fc0c74244b94763ce0a Mon Sep 17 00:00:00 2001 From: Carmen Andoh Date: Wed, 26 Aug 2015 15:00:41 -0400 Subject: [PATCH] add README for Setup before Tutorial can begin --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..d7308df --- /dev/null +++ b/README.md @@ -0,0 +1,19 @@ +## Getting Started + +Series of quick Go tutorials to show you a few things. + +### [Installing Go](INSTALL.md) + +This is a quick start guide to show you how to install Go, and write your first `Hello World` program. + +### [Your first Command Line Program](CLI.md) + +This tutorial will show you how to create a basic command line program that accepts arguments. + +### [Your First Webserver](HTTP.md) + +Learn how to spin up a web server and how to route incoming requests. + +### [Basic Concurrency](CONCURRENCY.md) + +See a couple of basic concurrency patterns.