我想从 go lang 中的另一个文件调用函数,有人可以帮忙吗?
test1.go package main func main() { demo() } test2.go package main import "fmt" func main() { } func demo() { fmt.Println("HI") }
如何调用demo中test2的test1?
demo
test2
test1
您main的包裹中不能有多个。
main
更一般地说,一个包中不能有多个具有给定名称的函数。
删除mainintest2.go并编译应用程序。该demo函数将从 中可见test1.go。
test2.go
test1.go