Files

12 lines
141 B
Go
Raw Permalink Normal View History

package main
import "fmt"
func init() {
fmt.Println("init[secondary.go] called")
}
func secondary() {
fmt.Println("secondary called")
}