Files
the-way-to-go_ZH_CN/eBook/examples/chapter_4/alias.go
2013-04-15 19:59:13 +08:00

7 lines
87 B
Go

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