This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Go notes | |
To fit into Go's current package-oriented compilation mode, we can | |
define a set of top-down root entry-points into each package. | |
Any global variable initializations and init functions are always part | |
of the root. | |
For package main, the main function is also a root. |
OlderNewer