Is there any good and big pdf tutorial or book for GO programming language ?

link|improve this question

63% accept rate
1  
Might I recommend tour.golang.org? Not really a book, but useful for learning :) – crazy2be Jan 28 at 17:10
feedback

7 Answers

up vote 33 down vote accepted

Consider also "Learning Go": version 0.2 at http://www.miek.nl/downloads/2010/go-0.2.pdf and daily builds (pdf files) at http://miek.nl/files/go/. You can also find "Effective Go" in a single pdf file at http://go-lang.cat-v.org/doc/effective-go.pdf.

link|improve this answer
feedback

These are good as well:

link|improve this answer
Just a note: as from the Go Blog (blog.golang.org/2011/06/…), the Go Course Day docs have been recently revised in their entirety. – andreamaf Jul 3 '11 at 6:43
feedback

Effective Go is a good resource

http://golang.org/doc/effective_go.html

link|improve this answer
feedback

As far as good Go books, there aren't any that I'd particularly recommend. The ones I've seen so far aren't very idiomatic.

The Go Tutorial is a great place to start. There's also a Wiki Codelab which covers the development of a simple web application and Practical Go Programming which goes through the development of a scalable web app (a video of this talk is also available).

I would also recommend you read the Go Blog, which has a lot of detailed articles about various Go concepts.

link|improve this answer
feedback

The lists that others have suggested is what I would suggest too. Like the design of Go, they are succinct. In case somebody requires a more detailed approach with more code samples, I'll place a plug here for a blog I've been working on:
* http://golangtutorials.blogspot.com
or if you want to choose a topic, the table of contents is at
* http://golangtutorials.blogspot.com/2011/05/table-of-contents.html

link|improve this answer
feedback

I did not read it:

Programming in Go: Creating Applications for the 21st Century, Rough Cuts

By Mark Summerfield

Published Apr 8, 2011 by Addison-Wesley Professional. Part of the Developer's Library series.

Copyright 2011 Edition: 1st Rough Cuts ISBN-10: 0-13-276408-3 ISBN-13: 978-0-13-276408-7

http://www.informit.com/store/product.aspx?isbn=0132764083

link|improve this answer
This book, not rough cuts version, is nearing publication and it is currently up-to-date as of Go 1 RC 1 (weekly.2012-03-13). Read more at comments.gmane.org/gmane.comp.lang.go.general/54502. – andreamaf Mar 18 at 10:38
The book was released now: amazon.com/Programming-Go-Creating-Applications-Developers/dp/… – jdi May 16 at 23:52
feedback

There's a codelab up on the go lang site that is pretty useful. http://golang.org/doc/codelab/wiki/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.