Go - Import Side Effect Or Blank Import
Before we jump into discussing the side effects😅, just see the below code and guess the output.
package main
func init(){
fmt.Println("This is init function")
}
func main(){
fmt.Println("This is main function. And I am the entry point into a...
blog.harishdurga.com2 min read