If you spend a little time with the tutorials (by tutorials I mean the Learning GO section on
http://tip.golang.org/doc/) That will explain a lot of what you need. Go is actually a pretty simple language (compared to some). The people who did the beginner level documents put a lot of effort into them and its worth giving them a close look. They certainly helped me translate a C/C++ background over to the "go" way of thinking/coding. They assume a familiarity with some previous programming language but they answer LOTS and LOTS of things you'll eventually need to use go effectively. Since you have go installed there are also the go sample programs in the "test" code under the source tree. Don't be afraid to look there once you've FULLY explored the tutorials. Go programs tend to be quite small and easily understood (well - usually - there are always exceptions :-) And there are a TON of program examples on the various public repositories that you can examine for examples of usage.
On Friday, March 16, 2012 7:45:02 PM UTC-4, Amitabh Arya wrote: