Files
the-way-to-go_ZH_CN/eBook/examples/chapter_4/alias.go
2015-03-03 12:25:25 -05:00

8 lines
93 B
Go

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