Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. Gopher newbie resources compiled by the Go team:
  2.  
  3. Here are some resources you should check out if you are learning / new to Go:
  4. First you should take the language tour: http://tour.golang.org/
  5.  
  6. Then, you should visit:
  7. - https://golang.org/doc/code.html to learn how to organize your Go workspace
  8. - https://golang.org/doc/effective_go.html be more effective at writing Go
  9. - https://golang.org/ref/spec learn more about the language itself
  10. - https://golang.org/doc/#articles a lot more reading material
  11.  
  12. There are some awesome websites as well:
  13. - https://blog.gopheracademy.com great resources for Gophers in general
  14. - http://gotime.fm awesome weekly podcast of Go awesomeness
  15. - https://gobyexample.com examples of how to do things in Go
  16. - http://go-database-sql.org how to use SQL databases in Go
  17. - https://dmitri.shuralyov.com/idiomatic-go tips on how to write more idiomatic Go code
  18. - https://divan.github.io/posts/avoid_gotchas will help you avoid gotchas in Go
  19. - https://golangbot.com tutorials to help you get started in Go
  20.  
  21. There’s also an exhaustive list of videos http://gophervids.appspot.com related to Go from various authors.
  22.  
  23. If you prefer books, you can try these:
  24. - http://www.golangbootcamp.com/book
  25. - http://gopl.io/
  26. - https://www.manning.com/books/go-in-action (if you e-mail @bkennedy at bill@ardanlabs.com you can get a free copy for being part of the gopher slack at gophers.slack.com)
  27.  
  28. If you want to learn how to organize your Go project, make sure to read: https://medium.com/@benbjohnson/standard-package-layout-7cdbc8391fc1#.ds38va3pp.
  29. Once you are accustomed to the language and syntax, you can read this series of articles for a walkthrough the various standard library packages: https://medium.com/go-walkthrough.
  30.  
  31. Finally, https://github.com/golang/go/wiki#learning-more-about-go will give a list of even more resources to learn Go
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement