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