var wg sync.WaitGroup
var wg sync.WaitGroup = sync.WaitGroup{} // is this initialization implicit, and why?
we can do this:var wg sync.WaitGroupinstead of having to write this:var wg sync.WaitGroup = sync.WaitGroup{} // is this initialization implicit, and why?anyone know why, or what it's called? Is this intialization implicit / automatic and what is the reasoning for this?