...

/

Tips for Importing Packages

Tips for Importing Packages

Useful tips and tricks for programming in Go.

This section will grow over time but the main goal is to share some tricks experienced developers discovered over time. Hopefully this tips will get new users more productive faster.

140 char tips

  • leave your object oriented brain at home. Embrace the interface. @mikegehard
  • Learn to do things the Go way, don’t try to force your language idioms into Go. @DrNic
  • It’s better to over do it with using interfaces than use too few of them. @evanphx
  • Embrace the language: simplicity, concurrency, and composition. @francesc
  • read all the
...