package main import "fmt" func init() { fmt.Println("first init") } func init() { fmt.Println("second init") } func main() { }