From f640d2b91c0738e405360fe7c53704b3f4dc886e Mon Sep 17 00:00:00 2001 From: Jessica Weinberg Date: Mon, 14 Sep 2015 15:55:18 -0400 Subject: [PATCH] Add RESOURCES --- README.md | 6 ++++++ RESOURCES.md | 11 +++++++++++ 2 files changed, 17 insertions(+) create mode 100644 RESOURCES.md diff --git a/README.md b/README.md index d7308df..8230783 100644 --- a/README.md +++ b/README.md @@ -17,3 +17,9 @@ 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. + +### [Resources](RESOURCES.md) + +Some Golang resources and other tutorials. + + diff --git a/RESOURCES.md b/RESOURCES.md new file mode 100644 index 0000000..a984da3 --- /dev/null +++ b/RESOURCES.md @@ -0,0 +1,11 @@ +## Helpful Resources + +[Tour of Go](https://tour.golang.org/welcome/1) + +[Go By Example](https://gobyexample.com) + +[Learn Go in Y Minutes](http://learnxinyminutes.com/docs/go/) + +[Effective Go](http://golang.org/doc/effective_go.html) + +[How To Write Go Code](http://golang.org/doc/code.html)