用法
package main
import (
. "fmt"
)
func main() {
Println("hello world")
}
- . 别名操作 ,把包名替换成其他名,便于记忆或者更有意义,或者防止混淆
package main
import ( console "fmt" ) func main() { console.Println("hello world") }
引用
原文链接:https://www.f2er.com/go/187090.htmlgo web 编程