Question #160

Author: admin
tags: Go  
package main

import "fmt"

func init() {
	fmt.Println("init 1")
}

func init() {
	fmt.Println("init 2")
}

func main() {
	fmt.Println("main")
}
What will be printed?
main
main
init 1
main
init 1
init 2
init 1
init 2
main
Nothing, the program will not be compiled
Rate the difficulty of the question:
easyhard