package main import "fmt" func main() { hello() } func hello() { fmt.Println("hello") } func init() { fmt.Println("hello3") } func init() { fmt.Println("hello2") } func init() { fmt.Println("hello1") } 可以按着顺序走
可以按着顺序走