https://www.it1352.com/808440.html
文章有严重错误 在相互调用 需要大写表示public
package main
import "fmt"
import "functions"
func main() {
fmt.Println("v=%d",functions.GetValue())
}
package functions
func GetValue() string{
return "Hello from this another package"
}