12 lines
146 B
Go
12 lines
146 B
Go
|
|
package secondary
|
||
|
|
|
||
|
|
import "fmt"
|
||
|
|
|
||
|
|
func init() {
|
||
|
|
fmt.Println("init[secondary.go] called")
|
||
|
|
}
|
||
|
|
|
||
|
|
func Secondary() {
|
||
|
|
fmt.Println("secondary called")
|
||
|
|
}
|