Files
the-way-to-go_ZH_CN/eBook/examples/chapter_4/alias.go
2013-04-21 19:25:28 -04:00

8 lines
86 B
Go

package main
import fm "fmt" // alias
func main() {
fm.Println("hello, world")
}