16 lines
134 B
Go
16 lines
134 B
Go
|
|
package main
|
||
|
|
|
||
|
|
import "fmt"
|
||
|
|
|
||
|
|
func init() {
|
||
|
|
fmt.Println("first init")
|
||
|
|
}
|
||
|
|
|
||
|
|
func init() {
|
||
|
|
fmt.Println("second init")
|
||
|
|
}
|
||
|
|
|
||
|
|
func main() {
|
||
|
|
|
||
|
|
}
|