Today I Learnt 9
Go 101 Continued The simplest Go program: package main func main() { } The first line package main specifies the package name (main here) of the containing source file. I just don鈥檛 understand this statement. Let me go back to the other book I was reading (Go in action). There I found the following statement: For the build tools to produce an executable, the function main must be declared, and it becomes the entry point for the program....