17 lines
177 B
Go
17 lines
177 B
Go
|
|
package main
|
||
|
|
|
||
|
|
import (
|
||
|
|
"demo/pkg1"
|
||
|
|
"fmt"
|
||
|
|
)
|
||
|
|
|
||
|
|
func main() {
|
||
|
|
println("Hello, World!")
|
||
|
|
|
||
|
|
fmt.Println(pkg1.GetVar3())
|
||
|
|
|
||
|
|
// 函数是一种类型
|
||
|
|
// fn := pkg1.GetVar3
|
||
|
|
// fn()
|
||
|
|
}
|