GolangNote

Golang笔记

golang 引入main 包名下的函数、变量

Permalink

golang 引入main 包名下的函数、变量

Go: 测试
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
$ cat main.go 
package main

func main() {
    p()
}
$ cat tst.go 
package main

import "fmt"

func p() {
    fmt.Println("ola")
}
$ go build ./ && ./test 
ola

直接 go run main.go 会提示函数不存在

要进入文件夹运行 go build .

本文网址: https://golangnote.com/topic/155.html 转摘请注明来源

Related articles

Write a Comment to "golang 引入main 包名下的函数、变量"

Submit Comment Login
Based on Golang + fastHTTP + sdb | go1.22.3 Processed in 0ms