diff options
Diffstat (limited to 'doc/docs.html')
-rw-r--r-- | doc/docs.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/docs.html b/doc/docs.html index ce833fdd1..a86d1714e 100644 --- a/doc/docs.html +++ b/doc/docs.html @@ -16,6 +16,16 @@ Once you've learned a little about the language, idioms of programming in Go. </p> +<h3 id="go_tour"><a href="http://go-tour.appspot.com/">A Tour of Go</a></h3> +<p> +An interactive introduction to Go in three sections. +The first section covers basic syntax and data structures; the second discusses +methods and interfaces; and the third introduces Go's concurrency primitives. +Each section concludes with a few exercises so you can practice what you've +learned. You can <a href="http://go-tour.appspot.com/">take the tour online</a> or +<a href="http://code.google.com/p/go-tour/">install it locally</a>. +</p> + <h3 id="orig_tutorial"><a href="go_tutorial.html">A Tutorial for the Go Programming Language</a></h3> <p> The first tutorial. An introductory text that touches upon several core @@ -97,6 +107,8 @@ Notable articles from the <a href="http://blog.golang.org/">Go Blog</a>. <li><a href="http://blog.golang.org/2011/01/json-and-go.html">JSON and Go</a> - using the <a href="/pkg/json/">json</a> package.</li> <li><a href="http://blog.golang.org/2011/03/gobs-of-data.html">Gobs of data</a> - the design and use of the <a href="/pkg/gob/">gob</a> package.</li> <li><a href="http://blog.golang.org/2011/09/laws-of-reflection.html">The Laws of Reflection</a> - the fundamentals of the <a href="/pkg/reflect/">reflect</a> package.</li> +<li><a href="http://blog.golang.org/2011/09/go-image-package.html">The Go image package</a> - the fundamentals of the <a href="/pkg/image/">image</a> package.</li> +<li><a href="http://blog.golang.org/2011/09/go-imagedraw-package.html">The Go image/draw package</a> - the fundamentals of the <a href="/pkg/image/draw/">image/draw</a> package.</li> </ul> <h3>Tools</h3> @@ -179,6 +191,11 @@ one goroutine can be guaranteed to observe values produced by writes to the same variable in a different goroutine. </p> +<h3 id="debugging_with_gdb"><a href="debugging_with_gdb.html">Debugging Go Code with GDB</a></h3> +<p> +Using GDB to debug Go programs. +</p> + <h2 id="videos_talks">Videos and Talks</h2> <h3 id="writing_web_apps"><a href="http://www.youtube.com/watch?v=-i0hat7pdpk">Writing Web Apps in Go</a></h3> |