Go's init function
You can define several init functions in a package or in the same source file.
Go will only use one go routine to call those init function, it will not invoke the next one until the previous one has returned.
Go's ref doesn't explicitly tell us the o...
hn.0xbf.me1 min read